File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 33@description
44
55Use the API Reference documentation when you need more information about a specific feature. Check out
6- {@link guide/ Developer Guide} for AngularJS concepts. If you are new to AngularJS we recomend the
6+ {@link guide/ Developer Guide} for AngularJS concepts. If you are new to AngularJS we recommend the
77{@link tutorial/ Tutorial}.
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ Returns the current value of an input field with the given `name`.
122122
123123## repeater(selector, label).count()
124124Returns the number of rows in the repeater matching the given jQuery `selector`. The `label` is
125- used for test ouput .
125+ used for test output .
126126
127127## repeater(selector, label).row(index)
128128Returns an array with the bindings in the row at the given `index` in the repeater matching the
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ Important things to notice:
3131 <doc:source>
3232 <script>
3333 // declare a module
34- var simpleAppModule = angular.module('myApp', []);
34+ var myAppModule = angular.module('myApp', []);
3535
3636 // configure the module.
3737 // in this example we will create a greeting filter
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ repeater tells Angular to create a `<li>` element for each phone in the list usi
6161tag as the template.
6262
6363* As we've learned in step 0, the curly braces around `phone.name` and `phone.snippet` denote
64- bindings. As opposed to evaluating constants, these expression are refering to our application
64+ bindings. As opposed to evaluating constants, these expressions are referring to our application
6565model, which was set up in our `PhoneListCtrl` controller.
6666
6767 <img class="diagram" src="img/tutorial/tutorial_02.png">
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ __`app/index.html`:__
5454 </div>
5555</pre>
5656
57- We added a standard HTML `<input>` tag and used angular 's
57+ We added a standard HTML `<input>` tag and used Angular 's
5858{@link api/ng.filter:filter $filter} function to process the input for the
5959{@link api/ng.directive:ngRepeat ngRepeat} directive.
6060
You can’t perform that action at this time.
0 commit comments