aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/tutorial
diff options
context:
space:
mode:
authorbrettcannon2012-07-18 16:23:52 -0300
committerBrian Ford2012-07-18 15:20:38 -0700
commitd56d69cc8319f69135a17a9bb5ae394123b33c51 (patch)
tree705e33e0f36821aaace030bb4a5f63b1f0409146 /docs/content/tutorial
parent01e726b2fa3fb0d2584c9bb8df116ff3a9f05879 (diff)
downloadangular.js-d56d69cc8319f69135a17a9bb5ae394123b33c51.tar.bz2
fix(docs): Tweak formatting and wording of a list
Diffstat (limited to 'docs/content/tutorial')
-rw-r--r--docs/content/tutorial/step_03.ngdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/content/tutorial/step_03.ngdoc b/docs/content/tutorial/step_03.ngdoc
index b5c943bc..d0ffb316 100644
--- a/docs/content/tutorial/step_03.ngdoc
+++ b/docs/content/tutorial/step_03.ngdoc
@@ -61,7 +61,7 @@ We added a standard HTML `<input>` tag and used angular's
This lets a user enter search criteria and immediately see the effects of their search on the phone
list. This new code demonstrates the following:
-* Data-binding. This is one of the core features in Angular. When the page loads, Angular binds the
+* Data-binding: This is one of the core features in Angular. When the page loads, Angular binds the
name of the input box to a variable of the same name in the data model and keeps the two in sync.
In this code, the data that a user types into the input box (named __`query`__) is immediately
@@ -71,7 +71,7 @@ the DOM to reflect the current state of the model.
<img class="diagram" src="img/tutorial/tutorial_03.png">
-* Use of `filter` filter. The {@link api/ng.filter:filter filter} function uses the
+* Use of the `filter` filter: The {@link api/ng.filter:filter filter} function uses the
`query` value to create a new array that contains only those records that match the `query`.
`ngRepeat` automatically updates the view in response to the changing number of phones returned