aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/tutorial
diff options
context:
space:
mode:
authorphil2012-08-23 01:02:28 -0700
committerphil2012-08-23 01:02:28 -0700
commitf7b4296c389c57a03a411dfc89776f21d66569fd (patch)
tree26c5b64c7685847c3f7e92903419384007494683 /docs/content/tutorial
parentcab5e1d9b363eac6fd31b15c5b86f30993e2f147 (diff)
downloadangular.js-f7b4296c389c57a03a411dfc89776f21d66569fd.tar.bz2
docs(tutorial): fix typo in step_00
Just removed an extra comma. No big deal.
Diffstat (limited to 'docs/content/tutorial')
-rw-r--r--docs/content/tutorial/step_00.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/tutorial/step_00.ngdoc b/docs/content/tutorial/step_00.ngdoc
index 7565595d..231e873a 100644
--- a/docs/content/tutorial/step_00.ngdoc
+++ b/docs/content/tutorial/step_00.ngdoc
@@ -195,7 +195,7 @@ being the element on which the `ngApp` directive was defined.
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.
- The binding tells Angular, that it should evaluate an expression and insert the result into the
+ 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
binding will result in efficient continuous updates whenever the result of the expression
evaluation changes.