We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbaa196 commit ac2f0ceCopy full SHA for ac2f0ce
docs/content/tutorial/step_02.ngdoc
@@ -178,7 +178,7 @@ execute the tests and report the results in the terminal.
178
179
* Create a new model property in the controller and bind to it from the template. For example:
180
181
- this.hello = "Hello, World!"
+ $scope.hello = "Hello, World!"
182
183
Refresh your browser to make sure it says, "Hello, World!"
184
docs/content/tutorial/step_03.ngdoc
@@ -35,7 +35,7 @@ __`app/index.html`:__
35
Fulltext Search: <input ng-model="query">
36
37
<ul class="phones">
38
- <li ng-repeat="phone in phones | filter(query)">
+ <li ng-repeat="phone in phones | filter:query">
39
{{phone.name}}
40
<p>{{phone.snippet}}</p>
41
</li>
0 commit comments