Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

Commit

Permalink
fix(docs): Tweak formatting and wording of a list
Browse files Browse the repository at this point in the history
  • Loading branch information
brettcannon authored and btford committed Jul 18, 2012
1 parent 01e726b commit d56d69c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/content/tutorial/step_03.ngdoc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit d56d69c

Please sign in to comment.