This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ We added a standard HTML `<input>` tag and used angular's
61
61
This lets a user enter search criteria and immediately see the effects of their search on the phone
62
62
list. This new code demonstrates the following:
63
63
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
65
65
name of the input box to a variable of the same name in the data model and keeps the two in sync.
66
66
67
67
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.
71
71
72
72
<img class="diagram" src="img/tutorial/tutorial_03.png">
73
73
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
75
75
`query` value to create a new array that contains only those records that match the `query`.
76
76
77
77
`ngRepeat` automatically updates the view in response to the changing number of phones returned
You can’t perform that action at this time.
0 commit comments