@@ -56,12 +56,12 @@ starting point you can easily change. Angular comes with the following out-of-th
5656Angular simplifies application development by presenting a higher level of abstraction to the
5757developer. Like any abstraction, it comes at a cost of flexibility. In other words not every app
5858is a good fit for Angular. Angular was built for the CRUD application in mind. Luckily CRUD
59- applications represent at least 90% of the web applications. But to understand what Angular is
59+ applications represent the majority of web applications. But to understand what Angular is
6060good at one also has to understand when an app is not a good fit for Angular.
6161
62- Games, and GUI editors are examples of very intensive and tricky DOM manipulation. These kinds of
63- apps are different from CRUD apps, and as a result are not a good fit for Angular. In these cases
64- using something closer to bare metal such as `jQuery` may be a better fit .
62+ Games and GUI editors are examples of applications with intensive and tricky DOM manipulation.
63+ These kinds of apps are different from CRUD apps, and as a result are probably not a good fit for Angular.
64+ In these cases it may be better to use a library with a lower level of abstraction, such as `jQuery` .
6565
6666
6767# An Introductory Angular Example
@@ -175,7 +175,7 @@ expressing business logic.
175175
176176
177177
178- Angular frees you from the following pain :
178+ Angular frees you from the following pains :
179179
180180 * **Registering callbacks:** Registering callbacks clutters your code, making it hard to see the
181181 forest for the trees. Removing common boilerplate code such as callbacks is a good thing. It
0 commit comments