aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide/bootstrap.ngdoc
diff options
context:
space:
mode:
authorSteve Nicolai2012-08-05 14:16:37 -0500
committerMisko Hevery2012-08-30 21:34:42 -0700
commitf66836fee40ba99008bf9d86a4dd9654b622f105 (patch)
tree71fb6172bff42684c4191687de53639b613148c5 /docs/content/guide/bootstrap.ngdoc
parent0ccc445d5350c352983278eba0919bc7e4c30b34 (diff)
downloadangular.js-f66836fee40ba99008bf9d86a4dd9654b622f105.tar.bz2
doc(devguide) - Fix typos and small grammatical errors in the developer guide.
Diffstat (limited to 'docs/content/guide/bootstrap.ngdoc')
-rw-r--r--docs/content/guide/bootstrap.ngdoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/content/guide/bootstrap.ngdoc b/docs/content/guide/bootstrap.ngdoc
index 58b2eb03..3be24bb5 100644
--- a/docs/content/guide/bootstrap.ngdoc
+++ b/docs/content/guide/bootstrap.ngdoc
@@ -24,7 +24,7 @@ initialization.
</html>
</pre>
- * Place the `script` tag at the buttom of the page. Placing script tags at the end of the page
+ * Place the `script` tag at the bottom of the page. Placing script tags at the end of the page
improves app load time because 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
@@ -34,12 +34,12 @@ initialization.
* Choose: `angular-[version].min.js` for a compressed and obfuscated file, suitable for use in
production.
* Place `ng-app` to the root of your application, typically on the `<html>` tag if you want
- anugular to auto-bootstrap your application.
+ angular to auto-bootstrap your application.
<html ng-app>
* 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
+ to make IE happy. (This is here for historical reasons, and we no longer recommend use of
`ng:`.)
<html xmlns:ng="http://angularjs.org">