aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content
diff options
context:
space:
mode:
authorBrad Green2012-04-03 07:07:41 -0700
committerBrad Green2012-04-03 07:07:49 -0700
commit28ff7c3a66fbd770515273c7ca2fcb9cd936b50e (patch)
tree5b0c8e8fa1677dd21e0ca2a02054619bb1f7909a /docs/content
parent59ae8adb3cfa635076b5cf64cc48b13a34bc04ad (diff)
downloadangular.js-28ff7c3a66fbd770515273c7ca2fcb9cd936b50e.tar.bz2
Doc fixes in bootstrap
Now makes sense.
Diffstat (limited to 'docs/content')
-rw-r--r--docs/content/guide/dev_guide.bootstrap.ngdoc20
-rw-r--r--docs/content/guide/dev_guide.compiler.ngdoc7
2 files changed, 14 insertions, 13 deletions
diff --git a/docs/content/guide/dev_guide.bootstrap.ngdoc b/docs/content/guide/dev_guide.bootstrap.ngdoc
index 0ee48cc2..5ca7d1a8 100644
--- a/docs/content/guide/dev_guide.bootstrap.ngdoc
+++ b/docs/content/guide/dev_guide.bootstrap.ngdoc
@@ -2,14 +2,14 @@
@name Developer Guide: Initializing Angular
@description
-Initializing angular consists of loading the `angular.js` script in your page, and specifying how
-angular should process and manage the page. To initialize angular you do the following:
+Initializing Angular consists of loading the `angular.js` script in your page, and specifying how
+Angular should process and manage the page. To initialize Angular you do the following:
-* Specify the angular namespace in the `<html>` page
-* Choose which flavor of angular script to load (debug or production)
-* Specify whether or not angular should process and manage the page automatically (`ng-app`)
+* Specify the Angular namespace in the `<html>` page
+* Choose which flavor of Angular script to load (debug or production)
+* Specify whether or not Angular should process and manage the page automatically (`ng-app`)
-The simplest way to initialize angular is to load the angular script and tell angular to compile
+The simplest way to initialize Angular is to load the Angular script and tell Angular to compile
and manage the whole page. You do this as follows:
<pre>
@@ -29,8 +29,8 @@ and manage the whole page. You do this as follows:
<html xmlns:ng="http://angularjs.org">
-You need to add the angular namespace declaration if you use `ng:something` style of declaring
-angular directives and you write your templates as XHTML. Or when you are targeting Internet
+You need to add the Angular namespace declaration if you use `ng:something` style of declaring
+Angular directives and you write your templates as XHTML. Or when you are targeting Internet
Explorer older than version 9 (because older versions of IE do not render namespace
properly for either HTML or XHTML). For more info please read {@link ie Internet Explorer
Compatibility} doc.
@@ -39,7 +39,7 @@ Compatibility} doc.
## Creating Your Own Namespaces
When you are ready to define your own {@link api/angular.module.ng.$compileProvider.directive
-directive}, you may chose to create your own namespace in addition to specifying the angular
+directive}, you may chose to create your own namespace in addition to specifying the Angular
namespace. You use your own namespace to form the fully qualified name for directives that you
create.
@@ -52,7 +52,7 @@ it to your unique domain:
## Loading the Angular Bootstrap Script
-The angular bootstrap script comes in two flavors; a debug script, and a production script:
+The Angular bootstrap script comes in two flavors; a debug script, and a production script:
* angular-[version].js - This is a human-readable file, suitable for development and debugging.
* angular-[version].min.js - This is a compressed and obfuscated file, suitable for use in
diff --git a/docs/content/guide/dev_guide.compiler.ngdoc b/docs/content/guide/dev_guide.compiler.ngdoc
index 265b21db..d979f309 100644
--- a/docs/content/guide/dev_guide.compiler.ngdoc
+++ b/docs/content/guide/dev_guide.compiler.ngdoc
@@ -2,10 +2,11 @@
@name Developer Guide: Angular HTML Compiler
@description
-The core of angular is its HTML compiler. The compiler processes angular directives allowing them
-to transform a static HTML page into a dynamic web application.
+The core of Angular is its HTML compiler. The compiler processes Angular
+{@link api/angular.module.ng.$compileProvider.directive directives} allowing them to transform a
+static HTML page into a dynamic web application.
-The default HTML transformations that the angular compiler provides are useful for building generic
+The default HTML transformations that the Angular compiler provides are useful for building generic
apps, but you can also extend the compiler to create a domain-specific language for building
specific types of web applications.