From 9d68e88de5d660bb14baccab5fd430a0c63f3e8f Mon Sep 17 00:00:00 2001 From: Aftab Ansari Date: Tue, 16 Feb 2016 22:11:29 +0530 Subject: [PATCH] Update README.md Typo Error Corrected. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d1f69370c83b..fdff012ba84f 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ Data and Data Models in AngularJS are plain JavaScript objects and one can add a #### Two-way Data Binding One of AngularJS's strongest features. Two-way Data Binding means that if something changes in the Model, the change gets reflected in the View instantaneously, and the same happens the other way around. This is also referred to as Reactive Programming, i.e. suppose `a = b + c` is being programmed and after this, if the value of `b` and/or `c` is changed then the value of `a` will be automatically updated to reflect the change. AngularJS uses its "scopes" as a glue between the Model and View and makes these updates in one available for the other. -#### Less Written Code and Easily Maintable Code +#### Less Written Code and Easily Maintainable Code Everything in AngularJS is created to enable the programmer ends up writing less code that is easily maintainable and readable by any other new person on the team. Believe it or not, one can write a complete working two-way data binded application in less than 10 lines of code. Try and see for yourself! #### Testing Ready