Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit f54edbb

Browse files
bshepherdsonmhevery
authored andcommitted
doc(faq): Fix minor spelling and wording errors
1 parent be50e07 commit f54edbb

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

docs/content/misc/faq.ngdoc

+9-9
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ So it's definitely not a plugin or some other native browser extension.
2121
### Is AngularJS a templating system?
2222

2323
At the highest level, Angular does look like a just another templating system. But there is one
24-
important reason why Angular templating system is different and makes it very good fit for
24+
important reason why the Angular templating system is different, that makes it very good fit for
2525
application development: bidirectional data binding. The template is compiled in the browser and
2626
the compilation step produces a live view. This means you, the developers, don't need to write
2727
code to constantly sync the view with the model and the model with the view as in other
@@ -30,7 +30,7 @@ templating systems.
3030

3131
### Do I need to worry about security holes in AngularJS?
3232

33-
Like with any technology, AngularJS is not impervious to attack. angular does, however, provide
33+
Like with any technology, AngularJS is not impervious to attack. Angular does, however, provide
3434
built-in protection from basic security holes including cross-site scripting and HTML injection
3535
attacks. AngularJS does round-trip escaping on all strings for you and even offers XSRF protection
3636
for server-side communication.
@@ -46,7 +46,7 @@ Yes. See instructions in {@link downloading}.
4646

4747

4848

49-
### What browsers does angular work with?
49+
### What browsers does Angular work with?
5050

5151
Our we run our extensive test suite against the following browsers: Safari, Chrome, Firefox, Opera,
5252
IE8, IE9 and mobile browsers (Android, Chrome Mobile, iOS Safari).
@@ -67,32 +67,32 @@ illustration we typically build snappy apps with hundreds or thousands of active
6767
The size of the file is < 29KB compressed and minified.
6868

6969

70-
### Can I use the open-source Closure Library with angular?
70+
### Can I use the open-source Closure Library with Angular?
7171

7272
Yes, you can use widgets from the {@link http://code.google.com/closure/library Closure Library}
73-
in angular.
73+
in Angular.
7474

75-
### Does angular use the jQuery library?
75+
### Does Angular use the jQuery library?
7676

7777
Yes, Angular can use {@link http://jquery.com/ jQuery} if it's present in your app when the
7878
application is being bootstrapped. If jQuery is not present in your script path, Angular falls back
7979
to its own implementation of the subset of jQuery that we call {@link api/angular.element jQLite}.
8080

8181

82-
### What is testability like in angular?
82+
### What is testability like in Angular?
8383

8484
Very testable and designed this way from ground up. It has an integrated dependency injection
8585
framework, provides mocks for many heavy dependencies (server-side communication). See
8686
{@link api/ng service} for details.
8787

8888

89-
### How can I learn more about angular?
89+
### How can I learn more about Angular?
9090

9191
Watch the July 28, 2010 talk
9292
"{@link http://www.youtube.com/watch?v=elvcgVSynRg| Angular: A Radically Different Way of Building
9393
AJAX Apps}".
9494

9595

96-
### How is angular licensed?
96+
### How is Angular licensed?
9797

9898
The MIT License.

0 commit comments

Comments
 (0)