From 1d8e42070a193ea0ba2f9664edf1ae76e57ce647 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 e93d8e56..99c8cd5c 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