@@ -91,22 +91,22 @@ being the element on which the `ngApp` directive was defined.
91
91
92
92
Nothing here {{'yet' + '!'}}
93
93
94
- This line demonstrates two core features of Angular's templating capabilities:
94
+ This line demonstrates two core features of Angular's templating capabilities:
95
95
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.
98
98
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.
103
103
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`).
107
107
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!".
110
110
111
111
## Bootstrapping AngularJS apps
112
112
0 commit comments