From ae0de07a1b5b0a86f1516c09b923ae48a279a1e8 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Thu, 3 Jul 2014 12:49:22 +0100 Subject: [PATCH] docs(tutorial/step-0): remove hyphen and clarify items Closes #5953 --- docs/content/tutorial/step_00.ngdoc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/content/tutorial/step_00.ngdoc b/docs/content/tutorial/step_00.ngdoc index 436e72c6..524dc994 100644 --- a/docs/content/tutorial/step_00.ngdoc +++ b/docs/content/tutorial/step_00.ngdoc @@ -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