aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide/dev_guide.templates.databinding.ngdoc
diff options
context:
space:
mode:
authorSteve Nicolai2012-08-05 14:16:37 -0500
committerMisko Hevery2012-08-30 16:02:24 -0700
commit5cb7297a08649107d5155a22477c8c3511372034 (patch)
treee25e455b8289342f1b98281c1fe5c9d0d3701cc8 /docs/content/guide/dev_guide.templates.databinding.ngdoc
parent0f05516d14329a5e080969c174fb7535b3a43cbe (diff)
downloadangular.js-5cb7297a08649107d5155a22477c8c3511372034.tar.bz2
doc(devguide) - Fix typos and small grammatical errors in the developer guide.
Diffstat (limited to 'docs/content/guide/dev_guide.templates.databinding.ngdoc')
-rw-r--r--docs/content/guide/dev_guide.templates.databinding.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/guide/dev_guide.templates.databinding.ngdoc b/docs/content/guide/dev_guide.templates.databinding.ngdoc
index ebd9a1e6..396aa609 100644
--- a/docs/content/guide/dev_guide.templates.databinding.ngdoc
+++ b/docs/content/guide/dev_guide.templates.databinding.ngdoc
@@ -24,7 +24,7 @@ because first the template (which is the uncompiled HTML along with any addition
directives) is compiled on the browser, and second, the compilation step produces a live view. We
say live because any changes to the view are immediately reflected in the model, and any changes in
the model are propagated to the view. This makes the model always the single-source-of-truth for
-the application state, greatly simplifying the programing model for the developer. You can think of
+the application state, greatly simplifying the programming model for the developer. You can think of
the view as simply an instant projection of your model.
Because the view is just a projection of the model, the controller is completely separated from the