diff options
| author | Godmar Back | 2012-09-05 10:28:42 -0400 |
|---|---|---|
| committer | Misko Hevery | 2012-09-06 16:06:23 -0700 |
| commit | 0472c5f07ec08b81b6cd0dee3743cc33cbe606b3 (patch) | |
| tree | 86d19cd25b1f0fbfe0d86647a148ba58e335d28f /docs/content | |
| parent | 92558fe4119fb1ee793d781de1888abef181c7f6 (diff) | |
| download | angular.js-0472c5f07ec08b81b6cd0dee3743cc33cbe606b3.tar.bz2 | |
docs(module): fixed module example and corrected typos
Diffstat (limited to 'docs/content')
| -rw-r--r-- | docs/content/api/index.ngdoc | 2 | ||||
| -rw-r--r-- | docs/content/guide/dev_guide.e2e-testing.ngdoc | 2 | ||||
| -rw-r--r-- | docs/content/guide/module.ngdoc | 2 | ||||
| -rw-r--r-- | docs/content/tutorial/step_02.ngdoc | 2 | ||||
| -rw-r--r-- | docs/content/tutorial/step_03.ngdoc | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/docs/content/api/index.ngdoc b/docs/content/api/index.ngdoc index e08217aa..d0ab64e6 100644 --- a/docs/content/api/index.ngdoc +++ b/docs/content/api/index.ngdoc @@ -3,5 +3,5 @@ @description Use the API Reference documentation when you need more information about a specific feature. Check out -{@link guide/ Developer Guide} for AngularJS concepts. If you are new to AngularJS we recomend the +{@link guide/ Developer Guide} for AngularJS concepts. If you are new to AngularJS we recommend the {@link tutorial/ Tutorial}. diff --git a/docs/content/guide/dev_guide.e2e-testing.ngdoc b/docs/content/guide/dev_guide.e2e-testing.ngdoc index 7cb04841..dd12e88a 100644 --- a/docs/content/guide/dev_guide.e2e-testing.ngdoc +++ b/docs/content/guide/dev_guide.e2e-testing.ngdoc @@ -122,7 +122,7 @@ Returns the current value of an input field with the given `name`. ## repeater(selector, label).count() Returns the number of rows in the repeater matching the given jQuery `selector`. The `label` is -used for test ouput. +used for test output. ## repeater(selector, label).row(index) Returns an array with the bindings in the row at the given `index` in the repeater matching the diff --git a/docs/content/guide/module.ngdoc b/docs/content/guide/module.ngdoc index bc55fea9..906f7a3f 100644 --- a/docs/content/guide/module.ngdoc +++ b/docs/content/guide/module.ngdoc @@ -31,7 +31,7 @@ Important things to notice: <doc:source> <script> // declare a module - var simpleAppModule = angular.module('myApp', []); + var myAppModule = angular.module('myApp', []); // configure the module. // in this example we will create a greeting filter diff --git a/docs/content/tutorial/step_02.ngdoc b/docs/content/tutorial/step_02.ngdoc index ddb04130..2b431dbc 100644 --- a/docs/content/tutorial/step_02.ngdoc +++ b/docs/content/tutorial/step_02.ngdoc @@ -61,7 +61,7 @@ repeater tells Angular to create a `<li>` element for each phone in the list usi tag as the template. * As we've learned in step 0, the curly braces around `phone.name` and `phone.snippet` denote -bindings. As opposed to evaluating constants, these expression are refering to our application +bindings. As opposed to evaluating constants, these expressions are referring to our application model, which was set up in our `PhoneListCtrl` controller. <img class="diagram" src="img/tutorial/tutorial_02.png"> diff --git a/docs/content/tutorial/step_03.ngdoc b/docs/content/tutorial/step_03.ngdoc index 18d0fca9..1dc5bbca 100644 --- a/docs/content/tutorial/step_03.ngdoc +++ b/docs/content/tutorial/step_03.ngdoc @@ -54,7 +54,7 @@ __`app/index.html`:__ </div> </pre> -We added a standard HTML `<input>` tag and used angular's +We added a standard HTML `<input>` tag and used Angular's {@link api/ng.filter:filter $filter} function to process the input for the {@link api/ng.directive:ngRepeat ngRepeat} directive. |
