Skip to content

Commit 339a18d

Browse files
author
vitoahmeny
committed
Update README.md
1 parent df4cc1a commit 339a18d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ To learn more about the grunt tasks, run `grunt --help` and also read our
4545

4646
What to Use AngularJS for and When to Use it
4747
---------
48-
AngularJS is the next generation framework where each component is designed to work with every other component in an interconnected way like a well oiled machine. AngularJS is JavaScript MVC made easy and done right. (Well it is not really MVC, read on, to understand what this means.)
48+
AngularJS is the next generation framework where each component is designed to work with every other component in an interconnected way like a well-oiled machine. AngularJS is JavaScript MVC made easy and done right. (Well it is not really MVC, read on, to understand what this means.)
4949

5050
#### MVC, no, MV* done the right way!
5151
MVC, short for Model-View-Controller, is a design pattern, i.e. how the code should be organized and how the different parts of an application separated for proper readability and debugging. Model is the data and the database. View is the user interface and what the user sees. Controller is the main link between Model and View. These are the three pillars of major programming frameworks present on the market today. On the other hand AngularJS works on MV*, short of Model-View-_Whatever_. The _Whatever_ is AngularJS way of telling that you may create any kind of linking between the Model and the View here.
@@ -65,4 +65,4 @@ One of AngularJS's strongest features. Two-way Data Binding means that if someth
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 binded application in less 10 lines of code. Try and see for yourself!
6666

6767
#### Testing Ready
68-
AngularJS has Dependency Injection, i.e. it takes care of providing all the necessary dependencies to its controllers whenever required. This helps in making the AngularJS code ready for unit testing by making use of mock dependencies created and injected. This makes AngularJS more modular and easily testable thus in turn helping a team create more robust application.
68+
AngularJS has Dependency Injection, i.e. it takes care of providing all the necessary dependencies to its controllers whenever required. This helps in making the AngularJS code ready for unit testing by making use of mock dependencies created and injected. This makes AngularJS more modular and easily testable thus in turn helping a team create more robust applications.

0 commit comments

Comments
 (0)