Skip to content

Commit 3ea4477

Browse files
AftabAnsari10662gkalpak
authored andcommitted
docs(README.md): fix typo
Closes angular#14062
1 parent 0b1b911 commit 3ea4477

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Data and Data Models in AngularJS are plain JavaScript objects and one can add a
6161
#### Two-way Data Binding
6262
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.
6363

64-
#### Less Written Code and Easily Maintable Code
64+
#### Less Written Code and Easily Maintainable Code
6565
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!
6666

6767
#### Testing Ready

0 commit comments

Comments
 (0)