This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 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
6161This lets a user enter search criteria and immediately see the effects of their search on the phone
6262list. 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
6565name 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
You can’t perform that action at this time.
0 commit comments