diff options
Diffstat (limited to 'docs/content')
| -rw-r--r-- | docs/content/guide/dev_guide.templates.databinding.ngdoc | 2 | ||||
| -rw-r--r-- | docs/content/guide/directive.ngdoc | 4 | ||||
| -rw-r--r-- | docs/content/misc/downloading.ngdoc | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/docs/content/guide/dev_guide.templates.databinding.ngdoc b/docs/content/guide/dev_guide.templates.databinding.ngdoc index 12749365..8fc7687e 100644 --- a/docs/content/guide/dev_guide.templates.databinding.ngdoc +++ b/docs/content/guide/dev_guide.templates.databinding.ngdoc @@ -2,7 +2,7 @@ @name Developer Guide: Templates: Data Binding in Angular @description -Data-binding in Angular web apps is the automatic syncronization of data between the model and view +Data-binding in Angular web apps is the automatic synchronization of data between the model and view components. The way that Angular implements data-binding lets you treat the model as the single-source-of-truth in your application. The view is a projection of the model at all times. When the model changes, the view reflects the change, and vice versa. diff --git a/docs/content/guide/directive.ngdoc b/docs/content/guide/directive.ngdoc index 2bc46879..14970b65 100644 --- a/docs/content/guide/directive.ngdoc +++ b/docs/content/guide/directive.ngdoc @@ -72,7 +72,7 @@ here: If an attribute with a binding is prefixed with `ngAttr` prefix (denormalized prefix: 'ng-attr-', 'ng:attr-') then during the compilation the prefix will be removed and the binding will be applied to an unprefixed attribute. This allows binding to attributes that would otherwise be eagerly -processed by browsers in their uncompilled form (e.g. `img[src]` or svg's `circle[cx]` attributes). +processed by browsers in their uncompiled form (e.g. `img[src]` or svg's `circle[cx]` attributes). For example, considering template: @@ -280,7 +280,7 @@ In most cases you will not need such fine control and so the above can be simpli different parts of this skeleton are explained in following sections. In this section we are interested only in some of this skeleton. -The first step in simplyfing the code is to rely on the default values. Therefore the above can be +The first step in simplifying the code is to rely on the default values. Therefore the above can be simplified as: <pre> diff --git a/docs/content/misc/downloading.ngdoc b/docs/content/misc/downloading.ngdoc index 2eb82768..31b69d1f 100644 --- a/docs/content/misc/downloading.ngdoc +++ b/docs/content/misc/downloading.ngdoc @@ -64,8 +64,8 @@ testing angular apps even easier. Your unit/integration test harness should load to write and execute end-to-end tests for angular applications. * __`angular-loader.min.js`__ — Module loader for Angular modules. If you are loading multiple script files containing - Angular modules, you can load them asynchronosuly and in any order as long as you load this file first. Often the - contents of this file are copy&pasted into the `index.html` to avoid even the inial request to `angular-loader.min.js`. + Angular modules, you can load them asynchronously and in any order as long as you load this file first. Often the + contents of this file are copy&pasted into the `index.html` to avoid even the initial request to `angular-loader.min.js`. See [angular-seed](https://github.com/angular/angular-seed/blob/master/app/index-async.html) for an example of usage. * __`angular-resource.js`__, __`angular-cookies.js`__, etc - extra Angular modules with additional functionality. |
