docs(tutorial): fix typos in steps 2 and 3

This commit is contained in:
Igor Minar 2012-04-10 06:04:13 -07:00
parent fbaa1968b7
commit ac2f0cece6
2 changed files with 2 additions and 2 deletions

View file

@ -178,7 +178,7 @@ execute the tests and report the results in the terminal.
* Create a new model property in the controller and bind to it from the template. For example:
this.hello = "Hello, World!"
$scope.hello = "Hello, World!"
Refresh your browser to make sure it says, "Hello, World!"

View file

@ -35,7 +35,7 @@ __`app/index.html`:__
Fulltext Search: <input ng-model="query">
<ul class="phones">
<li ng-repeat="phone in phones | filter(query)">
<li ng-repeat="phone in phones | filter:query">
{{phone.name}}
<p>{{phone.snippet}}</p>
</li>