Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 0472c5f

Browse files
godmarmhevery
authored andcommitted
docs(module): fixed module example and corrected typos
1 parent 92558fe commit 0472c5f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docs/content/api/index.ngdoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
@description
44

55
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
77
{@link tutorial/ Tutorial}.

docs/content/guide/dev_guide.e2e-testing.ngdoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ Returns the current value of an input field with the given `name`.
122122

123123
## repeater(selector, label).count()
124124
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.
126126

127127
## repeater(selector, label).row(index)
128128
Returns an array with the bindings in the row at the given `index` in the repeater matching the

docs/content/guide/module.ngdoc

+1-1
Original file line numberDiff line numberDiff 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

docs/content/tutorial/step_02.ngdoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ repeater tells Angular to create a `<li>` element for each phone in the list usi
6161
tag 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
6565
model, which was set up in our `PhoneListCtrl` controller.
6666

6767
<img class="diagram" src="img/tutorial/tutorial_02.png">

docs/content/tutorial/step_03.ngdoc

+1-1
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)