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

Commit d56d69c

Browse files
brettcannonbtford
authored andcommitted
fix(docs): Tweak formatting and wording of a list
1 parent 01e726b commit d56d69c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/content/tutorial/step_03.ngdoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ We added a standard HTML `<input>` tag and used angular's
6161
This lets a user enter search criteria and immediately see the effects of their search on the phone
6262
list. This new code demonstrates the following:
6363

64-
* Data-binding. This is one of the core features in Angular. When the page loads, Angular binds the
64+
* Data-binding: This is one of the core features in Angular. When the page loads, Angular binds the
6565
name of the input box to a variable of the same name in the data model and keeps the two in sync.
6666

6767
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.
7171

7272
<img class="diagram" src="img/tutorial/tutorial_03.png">
7373

74-
* Use of `filter` filter. The {@link api/ng.filter:filter filter} function uses the
74+
* Use of the `filter` filter: The {@link api/ng.filter:filter filter} function uses the
7575
`query` value to create a new array that contains only those records that match the `query`.
7676

7777
`ngRepeat` automatically updates the view in response to the changing number of phones returned

0 commit comments

Comments
 (0)