docs(tutorial/step-0): remove hyphen and clarify items

Closes #5953
This commit is contained in:
Peter Bacon Darwin
2014-07-03 12:49:22 +01:00
parent fe6b2fbfc4
commit 1d8e42070a

View File

@@ -88,8 +88,10 @@ being the element on which the `ngApp` directive was defined.
Nothing here {{'yet' + '!'}}
This line demonstrates the core feature of Angular's templating capabilities a binding, denoted
by double-curlies `{{ }}` as well as a simple expression `'yet' + '!'` used in this binding.
This line demonstrates two core features of Angular's templating capabilities:
* a binding, denoted by double-curlies `{{ }}`
* a simple expression `'yet' + '!'` used in this binding.
The binding tells Angular that it should evaluate an expression and insert the result into the
DOM in place of the binding. Rather than a one-time insert, as we'll see in the next steps, a