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

Commit

Permalink
fix(docs): Fix spelling, punctuation and grammatical errors on dev gu…
Browse files Browse the repository at this point in the history
…ide bootstrap page.
  • Loading branch information
jamiekrug authored and btford committed Jul 16, 2012
1 parent 2473412 commit c076fe0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/content/guide/bootstrap.ngdoc
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ initialization.
</pre>

* Place the `script` tag at the buttom of the page. Placing script tags at the end of the page
impreves app load time becouse the HTML loading is not blocked by loading of the `angular.js`
improves app load time becouse the HTML loading is not blocked by loading of the `angular.js`
script. You can get the latest bits from {@link http://code.angularjs.org}. Please don't link
your production code to this URL, as it will expose a security hole on your site. For
experimental development linking to our site is fine.
Expand All @@ -38,7 +38,7 @@ initialization.

<html ng-app>

* If you chose to use the old style directive syntax `ng:` then include xml-namespace in `html`
* If you choose to use the old style directive syntax `ng:` then include xml-namespace in `html`
to make IE happy. (This is here for historical resons, and we no longer recomend use of
`ng:`.)

Expand All @@ -48,9 +48,9 @@ initialization.

# Automatic Initialization

Angular initializes automatically upon `DOMContentLoaded` event, at which point angular looks for
Angular initializes automatically upon `DOMContentLoaded` event, at which point Angular looks for
the {@link api/ng.directive:ngApp `ng-app`} directive which
designates your application root. If {@link
designates your application root. If the {@link
api/ng.directive:ngApp `ng-app`} directive is found then Angular
will:

Expand Down Expand Up @@ -78,7 +78,7 @@ will:

If you need to have more control over the initialization process, you can use a manual
bootstrapping method instead. Examples of when you'd need to do this include using script loaders
or the need to perform an operation before the Angular compiles a page.
or the need to perform an operation before Angular compiles a page.


Here is an example of manually initializing Angular. The example is equivalent to using the {@link
Expand All @@ -99,7 +99,7 @@ api/ng.directive:ngApp ng-app} directive.
</html>
</pre>

This sequence that your code should follow:
This is the sequence that your code should follow:

1. After the page and all of the code is loaded, find the root of the HTML template, which is
typically the root of the document.
Expand Down

0 comments on commit c076fe0

Please sign in to comment.