@@ -25,7 +25,7 @@ initialization.
2525</pre>
2626
2727 * Place the `script` tag at the buttom of the page. Placing script tags at the end of the page
28- impreves app load time becouse the HTML loading is not blocked by loading of the `angular.js`
28+ improves app load time becouse the HTML loading is not blocked by loading of the `angular.js`
2929 script. You can get the latest bits from {@link http://code.angularjs.org}. Please don't link
3030 your production code to this URL, as it will expose a security hole on your site. For
3131 experimental development linking to our site is fine.
@@ -38,7 +38,7 @@ initialization.
3838
3939 <html ng-app>
4040
41- * If you chose to use the old style directive syntax `ng:` then include xml-namespace in `html`
41+ * If you choose to use the old style directive syntax `ng:` then include xml-namespace in `html`
4242 to make IE happy. (This is here for historical resons, and we no longer recomend use of
4343 `ng:`.)
4444
@@ -48,9 +48,9 @@ initialization.
4848
4949# Automatic Initialization
5050
51- Angular initializes automatically upon `DOMContentLoaded` event, at which point angular looks for
51+ Angular initializes automatically upon `DOMContentLoaded` event, at which point Angular looks for
5252the {@link api/ng.directive:ngApp `ng-app`} directive which
53- designates your application root. If {@link
53+ designates your application root. If the {@link
5454api/ng.directive:ngApp `ng-app`} directive is found then Angular
5555will:
5656
7878
7979If you need to have more control over the initialization process, you can use a manual
8080bootstrapping method instead. Examples of when you'd need to do this include using script loaders
81- or the need to perform an operation before the Angular compiles a page.
81+ or the need to perform an operation before Angular compiles a page.
8282
8383
8484Here is an example of manually initializing Angular. The example is equivalent to using the {@link
@@ -99,7 +99,7 @@ api/ng.directive:ngApp ng-app} directive.
9999</html>
100100</pre>
101101
102- This sequence that your code should follow:
102+ This is the sequence that your code should follow:
103103
104104 1. After the page and all of the code is loaded, find the root of the HTML template, which is
105105 typically the root of the document.
0 commit comments