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

Commit 28ff7c3

Browse files
committed
Doc fixes in bootstrap
Now makes sense.
1 parent 59ae8ad commit 28ff7c3

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

docs/content/guide/dev_guide.bootstrap.ngdoc

+10-10
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
@name Developer Guide: Initializing Angular
33
@description
44

5-
Initializing angular consists of loading the `angular.js` script in your page, and specifying how
6-
angular should process and manage the page. To initialize angular you do the following:
5+
Initializing Angular consists of loading the `angular.js` script in your page, and specifying how
6+
Angular should process and manage the page. To initialize Angular you do the following:
77

8-
* Specify the angular namespace in the `<html>` page
9-
* Choose which flavor of angular script to load (debug or production)
10-
* Specify whether or not angular should process and manage the page automatically (`ng-app`)
8+
* Specify the Angular namespace in the `<html>` page
9+
* Choose which flavor of Angular script to load (debug or production)
10+
* Specify whether or not Angular should process and manage the page automatically (`ng-app`)
1111

12-
The simplest way to initialize angular is to load the angular script and tell angular to compile
12+
The simplest way to initialize Angular is to load the Angular script and tell Angular to compile
1313
and manage the whole page. You do this as follows:
1414

1515
<pre>
@@ -29,8 +29,8 @@ and manage the whole page. You do this as follows:
2929

3030
<html xmlns:ng="http://angularjs.org">
3131

32-
You need to add the angular namespace declaration if you use `ng:something` style of declaring
33-
angular directives and you write your templates as XHTML. Or when you are targeting Internet
32+
You need to add the Angular namespace declaration if you use `ng:something` style of declaring
33+
Angular directives and you write your templates as XHTML. Or when you are targeting Internet
3434
Explorer older than version 9 (because older versions of IE do not render namespace
3535
properly for either HTML or XHTML). For more info please read {@link ie Internet Explorer
3636
Compatibility} doc.
@@ -39,7 +39,7 @@ Compatibility} doc.
3939
## Creating Your Own Namespaces
4040

4141
When you are ready to define your own {@link api/angular.module.ng.$compileProvider.directive
42-
directive}, you may chose to create your own namespace in addition to specifying the angular
42+
directive}, you may chose to create your own namespace in addition to specifying the Angular
4343
namespace. You use your own namespace to form the fully qualified name for directives that you
4444
create.
4545

@@ -52,7 +52,7 @@ it to your unique domain:
5252

5353
## Loading the Angular Bootstrap Script
5454

55-
The angular bootstrap script comes in two flavors; a debug script, and a production script:
55+
The Angular bootstrap script comes in two flavors; a debug script, and a production script:
5656

5757
* angular-[version].js - This is a human-readable file, suitable for development and debugging.
5858
* angular-[version].min.js - This is a compressed and obfuscated file, suitable for use in

docs/content/guide/dev_guide.compiler.ngdoc

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
@name Developer Guide: Angular HTML Compiler
33
@description
44

5-
The core of angular is its HTML compiler. The compiler processes angular directives allowing them
6-
to transform a static HTML page into a dynamic web application.
5+
The core of Angular is its HTML compiler. The compiler processes Angular
6+
{@link api/angular.module.ng.$compileProvider.directive directives} allowing them to transform a
7+
static HTML page into a dynamic web application.
78

8-
The default HTML transformations that the angular compiler provides are useful for building generic
9+
The default HTML transformations that the Angular compiler provides are useful for building generic
910
apps, but you can also extend the compiler to create a domain-specific language for building
1011
specific types of web applications.
1112

0 commit comments

Comments
 (0)