diff options
| author | Matt Rohrer | 2012-09-26 15:30:55 +0200 | 
|---|---|---|
| committer | Brian Ford | 2013-01-17 19:10:46 -0500 | 
| commit | 93070f14885801de7e264b04fdf4cb54b7dc7d9b (patch) | |
| tree | 9a96a5e4c8ea0e18dc775c2b92bc148c57c00a87 /docs/content/cookbook/mvc.ngdoc | |
| parent | 3c8583e5dd10ff356ac473f53e920fb10eb41571 (diff) | |
| download | angular.js-93070f14885801de7e264b04fdf4cb54b7dc7d9b.tar.bz2 | |
docs(guide): minor grammar fixes
Diffstat (limited to 'docs/content/cookbook/mvc.ngdoc')
| -rw-r--r-- | docs/content/cookbook/mvc.ngdoc | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/docs/content/cookbook/mvc.ngdoc b/docs/content/cookbook/mvc.ngdoc index c362174c..ff067f61 100644 --- a/docs/content/cookbook/mvc.ngdoc +++ b/docs/content/cookbook/mvc.ngdoc @@ -2,7 +2,7 @@  @name Cookbook: MVC  @description -MVC allows for a clean an testable separation between the behavior (controller) and the view +MVC allows for a clean and testable separation between the behavior (controller) and the view  (HTML template). A Controller is just a JavaScript class which is grafted onto the scope of the  view. This makes it very easy for the controller and the view to share the model. @@ -115,7 +115,7 @@ view.  # Things to notice  * The controller is defined in JavaScript and has no reference to the rendering logic. -* The controller is instantiated by <angular/> and injected into the view. +* The controller is instantiated by Angular and injected into the view.  * The controller can be instantiated in isolation (without a view) and the code will still execute.  This makes it very testable.  * The HTML view is a projection of the model. In the above example, the model is stored in the | 
