@@ -91,22 +91,22 @@ being the element on which the `ngApp` directive was defined.
9191
9292 Nothing here {{'yet' + '!'}}
9393
94- This line demonstrates two core features of Angular's templating capabilities:
94+ This line demonstrates two core features of Angular's templating capabilities:
9595
96- * a binding, denoted by double-curlies `{{ }}`
97- * a simple expression `'yet' + '!'` used in this binding.
96+ * a binding, denoted by double-curlies `{{ }}`
97+ * a simple expression `'yet' + '!'` used in this binding.
9898
99- The binding tells Angular that it should evaluate an expression and insert the result into the
100- DOM in place of the binding. Rather than a one-time insert, as we'll see in the next steps, a
101- binding will result in efficient continuous updates whenever the result of the expression
102- evaluation changes.
99+ The binding tells Angular that it should evaluate an expression and insert the result into the
100+ DOM in place of the binding. Rather than a one-time insert, as we'll see in the next steps, a
101+ binding will result in efficient continuous updates whenever the result of the expression
102+ evaluation changes.
103103
104- {@link guide/expression Angular expression} is a JavaScript-like code snippet that is
105- evaluated by Angular in the context of the current model scope, rather than within the scope of
106- the global context (`window`).
104+ {@link guide/expression Angular expression} is a JavaScript-like code snippet that is
105+ evaluated by Angular in the context of the current model scope, rather than within the scope of
106+ the global context (`window`).
107107
108- As expected, once this template is processed by Angular, the html page contains the text:
109- "Nothing here yet!".
108+ As expected, once this template is processed by Angular, the html page contains the text:
109+ "Nothing here yet!".
110110
111111## Bootstrapping AngularJS apps
112112
0 commit comments