From 716b5fd3e24e11986ded2cc381b9fbb77971a1e2 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Tue, 13 Mar 2012 23:00:30 -0700 Subject: docs(*): fixing various docs --- .../guide/dev_guide.bootstrap.manual_bootstrap.ngdoc | 2 +- docs/content/guide/dev_guide.bootstrap.ngdoc | 10 +++++----- .../guide/dev_guide.di.using_di_controllers.ngdoc | 2 +- docs/content/guide/dev_guide.expressions.ngdoc | 4 ++++ docs/content/guide/dev_guide.i18n.ngdoc | 2 +- .../dev_guide.mvc.understanding_controller.ngdoc | 4 ++-- docs/content/guide/dev_guide.overview.ngdoc | 20 +++++++++----------- docs/content/guide/dev_guide.templates.ngdoc | 7 ++++--- docs/content/misc/downloading.ngdoc | 6 +++--- docs/content/misc/started.ngdoc | 9 ++++----- 10 files changed, 34 insertions(+), 32 deletions(-) (limited to 'docs') diff --git a/docs/content/guide/dev_guide.bootstrap.manual_bootstrap.ngdoc b/docs/content/guide/dev_guide.bootstrap.manual_bootstrap.ngdoc index aa74a563..e952e91e 100644 --- a/docs/content/guide/dev_guide.bootstrap.manual_bootstrap.ngdoc +++ b/docs/content/guide/dev_guide.bootstrap.manual_bootstrap.ngdoc @@ -12,7 +12,7 @@ explicitly.
 
-
+
 
   
   
 
  ...
diff --git a/docs/content/guide/dev_guide.expressions.ngdoc b/docs/content/guide/dev_guide.expressions.ngdoc
index 4ad7bdb6..c54a9343 100644
--- a/docs/content/guide/dev_guide.expressions.ngdoc
+++ b/docs/content/guide/dev_guide.expressions.ngdoc
@@ -236,6 +236,10 @@ objects with additional behavior. By prefixing its additions with $ we are reser
 so that angular developers and developers who use angular can develop in harmony without collisions.
 
 
+## Related Topics
+
+* {@link dev_guide.templates.filters Understanding Angular Filters}
+
 ## Related API
 
 * {@link api/angular.module.ng.$compile Angular Compiler API}
diff --git a/docs/content/guide/dev_guide.i18n.ngdoc b/docs/content/guide/dev_guide.i18n.ngdoc
index 7ed94b7c..5ba627ab 100644
--- a/docs/content/guide/dev_guide.i18n.ngdoc
+++ b/docs/content/guide/dev_guide.i18n.ngdoc
@@ -22,7 +22,7 @@ http://docs.angularjs.org/#!/api/angular.module.ng.$filter.number number} and {@
 http://docs.angularjs.org/#!/api/angular.module.ng.$filter.currency currency} filters.
 
 Additionally, Angular supports localizable pluralization support provided by the {@link
-api/angular.module.ng.$compileProvider.directive.ng-pluralize ng-pluralize widget}.
+api/angular.module.ng.$compileProvider.directive.ng-pluralize ng-pluralize directive}.
 
 All localizable Angular components depend on locale-specific rule sets managed by the {@link
 api/angular.module.ng.$locale $locale service}.
diff --git a/docs/content/guide/dev_guide.mvc.understanding_controller.ngdoc b/docs/content/guide/dev_guide.mvc.understanding_controller.ngdoc
index 17928adc..b5fe6bd8 100644
--- a/docs/content/guide/dev_guide.mvc.understanding_controller.ngdoc
+++ b/docs/content/guide/dev_guide.mvc.understanding_controller.ngdoc
@@ -65,9 +65,9 @@ Do not use controllers for:
 manipulation—the presentation logic of an application—is well known for being hard to test.
 Putting any presentation logic into controllers significantly affects testability of the business
 logic. Angular offers {@link dev_guide.templates.databinding} for automatic DOM manipulation. If
-you have to perform your own manual DOM manipulation, encapsulate the presentation logic in and
+you have to perform your own manual DOM manipulation, encapsulate the presentation logic in
 {@link api/angular.module.ng.$compileProvider.directive directives}.
-- Input formatting — Use {@link dev_guide.forms angular form widgets} instead.
+- Input formatting — Use {@link dev_guide.forms angular form controls} instead.
 - Output filtering — Use {@link dev_guide.templates.filters angular filters} instead.
 - Run stateless or stateful code shared across controllers — Use {@link dev_guide.services angular
 services} instead.
diff --git a/docs/content/guide/dev_guide.overview.ngdoc b/docs/content/guide/dev_guide.overview.ngdoc
index b0e9e2f9..4c9c2953 100644
--- a/docs/content/guide/dev_guide.overview.ngdoc
+++ b/docs/content/guide/dev_guide.overview.ngdoc
@@ -79,12 +79,10 @@ easier a web developer's life can if they're using angular:
 Try out the Live Preview above, and then let's walk through the example and describe what's going
 on.
 
-In the `` tag, we add an attribute to let the browser know about the angular namespace.
-This ensures angular runs nicely in all major browsers. We also specify that it is an angular
-application with the `ng-app` directive. The `ng-app' will cause the angular to {@link
-dev_guide.bootstrap auto initialize} your application.
+In the `` tag we specify that this is an angular application with the `ng-app` directive.
+The `ng-app' will cause the angular to {@link dev_guide.bootstrap auto initialize} your application.
 
-        
+        
 
 We load the angular using the  `
+      
     
     
     
diff --git a/docs/content/misc/started.ngdoc b/docs/content/misc/started.ngdoc
index a8dd84a7..933f916f 100644
--- a/docs/content/misc/started.ngdoc
+++ b/docs/content/misc/started.ngdoc
@@ -21,14 +21,13 @@ A great way for you to get started with AngularJS is to create the tradtional
 
 The resulting web page should look something like the following:
 
-
+
 
 Now let's take a closer look at that code, and see what is going on behind
 the scenes.
 
-The first line of interest defines the `ng` namespace, which makes
-AngularJS work across all browsers (especially important for IE). The
-`ng-app` tags tells angular to process the entire HTML when it is loaded:
+The `ng-app` tags tells angular to process the entire HTML page and bootstrap the app when the page
+is loaded:
 
 
     
@@ -37,7 +36,7 @@ AngularJS work across all browsers (especially important for IE). The
 The next line downloads the angular script:
 
 
-    
+    
 
(For details on what happens when angular processes an HTML page, -- cgit v1.2.3