diff options
Diffstat (limited to 'docs/content/guide/dev_guide.templates.databinding.ngdoc')
| -rw-r--r-- | docs/content/guide/dev_guide.templates.databinding.ngdoc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/content/guide/dev_guide.templates.databinding.ngdoc b/docs/content/guide/dev_guide.templates.databinding.ngdoc index 396aa609..12749365 100644 --- a/docs/content/guide/dev_guide.templates.databinding.ngdoc +++ b/docs/content/guide/dev_guide.templates.databinding.ngdoc @@ -2,8 +2,8 @@ @name Developer Guide: Templates: Data Binding in Angular @description -Data-binding in angular web apps is the automatic syncing of data between the model and view -components. The way that angular implements data-binding lets you treat the model as the +Data-binding in Angular web apps is the automatic syncronization 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. @@ -19,7 +19,7 @@ to write code that constantly syncs the view with the model and the model with t ## Data Binding in Angular Templates <img class="right" src="img/Two_Way_Data_Binding.png"/> -The way angular templates works is different, as illustrated in the diagram. They are different +The way Angular templates works is different, as illustrated in the diagram. They are different because first the template (which is the uncompiled HTML along with any additional markup or 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 |
