This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree 5 files changed +5
-5
lines changed
5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 3
3
@description
4
4
5
5
Use 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
7
7
{@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`.
122
122
123
123
## repeater(selector, label).count()
124
124
Returns 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 .
126
126
127
127
## repeater(selector, label).row(index)
128
128
Returns 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:
31
31
<doc:source>
32
32
<script>
33
33
// declare a module
34
- var simpleAppModule = angular.module('myApp', []);
34
+ var myAppModule = angular.module('myApp', []);
35
35
36
36
// configure the module.
37
37
// 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
61
61
tag as the template.
62
62
63
63
* 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
65
65
model, which was set up in our `PhoneListCtrl` controller.
66
66
67
67
<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`:__
54
54
</div>
55
55
</pre>
56
56
57
- We added a standard HTML `<input>` tag and used angular 's
57
+ We added a standard HTML `<input>` tag and used Angular 's
58
58
{@link api/ng.filter:filter $filter} function to process the input for the
59
59
{@link api/ng.directive:ngRepeat ngRepeat} directive.
60
60
You can’t perform that action at this time.
0 commit comments