aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/cookbook
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/cookbook')
-rw-r--r--docs/content/cookbook/deeplinking.ngdoc7
-rw-r--r--docs/content/cookbook/form.ngdoc8
-rw-r--r--docs/content/cookbook/helloworld.ngdoc3
3 files changed, 9 insertions, 9 deletions
diff --git a/docs/content/cookbook/deeplinking.ngdoc b/docs/content/cookbook/deeplinking.ngdoc
index a4dc3a9b..1d6d196b 100644
--- a/docs/content/cookbook/deeplinking.ngdoc
+++ b/docs/content/cookbook/deeplinking.ngdoc
@@ -102,11 +102,10 @@ The two partials are defined in the following URLs:
* Routes are defined in the `AppCntl` class. The initialization of the controller causes the
initialization of the {@link api/angular.module.ng.$route $route} service with the proper URL
-routes.
+ routes.
* The {@link api/angular.module.ng.$route $route} service then watches the URL and instantiates the
appropriate controller when the URL changes.
-* The {@link api/angular.widget.ng:view ng:view} widget loads the view when the URL changes. It
-also
- sets the view scope to the newly instantiated controller.
+* The {@link api/angular.module.ng.$compileProvider.directive.ng:view ng:view} widget loads the
+ view when the URL changes. It also sets the view scope to the newly instantiated controller.
* Changing the URL is sufficient to change the controller and view. It makes no difference whether
the URL is changed programatically or by the user.
diff --git a/docs/content/cookbook/form.ngdoc b/docs/content/cookbook/form.ngdoc
index 9371da7a..b811a1fc 100644
--- a/docs/content/cookbook/form.ngdoc
+++ b/docs/content/cookbook/form.ngdoc
@@ -102,12 +102,12 @@ allow a user to enter data.
# Things to notice
-* The user data model is initialized {@link api/angular.directive.ng:controller controller} and is
-available in
- the {@link api/angular.module.ng.$rootScope.Scope scope} with the initial data.
+* The user data model is initialized {@link api/angular.module.ng.$compileProvider.directive.ng:controller controller} and is
+ available in the {@link api/angular.module.ng.$rootScope.Scope scope} with the initial data.
* For debugging purposes we have included a debug view of the model to better understand what
is going on.
-* The {@link api/angular.widget.input input widgets} simply refer to the model and are data-bound.
+* The {@link api/angular.module.ng.$compileProvider.directive.input input directives} simply refer
+ to the model and are data-bound.
* The inputs {@link guide/dev_guide.forms validate}. (Try leaving them blank or entering non digits
in the zip field)
* In your application you can simply read from or write to the model and the form will be updated.
diff --git a/docs/content/cookbook/helloworld.ngdoc b/docs/content/cookbook/helloworld.ngdoc
index b6b5bcf7..0d9f882a 100644
--- a/docs/content/cookbook/helloworld.ngdoc
+++ b/docs/content/cookbook/helloworld.ngdoc
@@ -29,7 +29,8 @@
Take a look through the source and note:
* The script tag that {@link guide/dev_guide.bootstrap bootstraps} the angular environment.
-* The text {@link api/angular.widget.input input widget} which is bound to the greeting name text.
+* The text {@link api/angular.module.ng.$compileProvider.directive.input input widget} which is
+ bound to the greeting name text.
* No need for listener registration and event firing on change events.
* The implicit presence of the `name` variable which is in the root {@link api/angular.module.ng.$rootScope.Scope scope}.
* The double curly brace `{{markup}}`, which binds the name variable to the greeting text.