From 95d86d151add21b0fdff8fe9d725f64c868a0074 Mon Sep 17 00:00:00 2001 From: Pawel Kozlowski Date: Thu, 27 Nov 2014 08:50:22 +0100 Subject: [PATCH] fix(example): correct markup in the hello world example --- modules/examples/src/hello_world/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/examples/src/hello_world/app.js b/modules/examples/src/hello_world/app.js index a4b1cce9f2..2e3ee8402a 100644 --- a/modules/examples/src/hello_world/app.js +++ b/modules/examples/src/hello_world/app.js @@ -20,7 +20,7 @@ import {bootstrap, Component, Decorator, TemplateConfig, NgElement} from 'core/c // The template for the component. // Expressions in the template (like {{greeting}}) are evaluated in the // context of the HelloCmp class below. - inline: `{{greeting}} world!`, + inline: `{{greeting}} world!`, // All directives used in the template need to be specified. This allows for // modularity (RedDec can only be used in this template) // and better tooling (the template can be invalidated if the attribute is