diff options
| author | Dave Peticolas | 2013-09-20 14:08:19 -0700 | 
|---|---|---|
| committer | Brian Ford | 2013-09-27 13:20:40 -0700 | 
| commit | 4998d3ee79195eab779482e0a51fee9f5f90b216 (patch) | |
| tree | 34f7ac0e6b571310af3f9c479b7a409fdad458df /src/ng/directive/ngController.js | |
| parent | 15fa29fb4b5c53dd679602d8bdc392e4874d8917 (diff) | |
| download | angular.js-4998d3ee79195eab779482e0a51fee9f5f90b216.tar.bz2 | |
docs(ngController): fix grammar
Diffstat (limited to 'src/ng/directive/ngController.js')
| -rw-r--r-- | src/ng/directive/ngController.js | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/src/ng/directive/ngController.js b/src/ng/directive/ngController.js index b492cabb..7ee7648f 100644 --- a/src/ng/directive/ngController.js +++ b/src/ng/directive/ngController.js @@ -10,7 +10,7 @@   *   * MVC components in angular:   * - * * Model — The Model is scope properties; scopes are attached to DOM where scope properties + * * Model — The Model is scope properties; scopes are attached to the DOM where scope properties   *   are accessed through bindings.   * * View — The template (HTML with data bindings) that is rendered into the View.   * * Controller — The `ngController` directive specifies a Controller class; the class contains business @@ -31,8 +31,8 @@   * easily be called from the angular markup. Notice that the scope becomes the `this` for the   * controller's instance. This allows for easy access to the view data from the controller. Also   * notice that any changes to the data are automatically reflected in the View without the need - * for a manual update. The example is included in two different declaration styles based on - * your style preferences. + * for a manual update. The example is shown in two different declaration styles you may use + * according to preference.     <doc:example>       <doc:source>        <script> | 
