aboutsummaryrefslogtreecommitdiffstats
path: root/src/service
diff options
context:
space:
mode:
authorIgor Minar2012-03-12 21:30:03 -0700
committerIgor Minar2012-03-12 23:04:12 -0700
commitafe617a647211bbb2173bb0dd4c4c6d44c11a407 (patch)
tree49fd1b447cf3fa44b2738249f4c1adc93726b945 /src/service
parentf59e4b11f11261c234a821db67088f0de88a2852 (diff)
downloadangular.js-afe617a647211bbb2173bb0dd4c4c6d44c11a407.tar.bz2
docs(*): renaming incorrect widget references to control or directive
Diffstat (limited to 'src/service')
-rw-r--r--src/service/compiler.js8
-rw-r--r--src/service/route.js2
2 files changed, 2 insertions, 8 deletions
diff --git a/src/service/compiler.js b/src/service/compiler.js
index d23fd6e5..cefc2d81 100644
--- a/src/service/compiler.js
+++ b/src/service/compiler.js
@@ -116,12 +116,6 @@
* </pre>
*
*
- * Compiler Methods For Widgets and Directives:
- *
- * The following methods are available for use when you write your own widgets, directives,
- * and markup.
- *
- *
* For information on how the compiler works, see the
* {@link guide/dev_guide.compiler Angular HTML Compiler} section of the Developer Guide.
*/
@@ -427,7 +421,7 @@ function $CompileProvider($provide) {
/**
* Once the directives have been collected their compile functions is executed. This method
- * is responsible for inlining widget templates as well as terminating the application
+ * is responsible for inlining directive templates as well as terminating the application
* of the directives if the terminal directive has been reached..
*
* @param {Array} directives Array of collected directives to execute their compile function.
diff --git a/src/service/route.js b/src/service/route.js
index 3e9cbb41..dea646cc 100644
--- a/src/service/route.js
+++ b/src/service/route.js
@@ -28,7 +28,7 @@ function $RouteProvider(){
* created scope.
* - `template` – `{string=}` – path to an html template that should be used by
* {@link angular.module.ng.$compileProvider.directive.ng-view ng-view} or
- * {@link angular.module.ng.$compileProvider.directive.ng-include ng-include} widgets.
+ * {@link angular.module.ng.$compileProvider.directive.ng-include ng-include} directives.
* - `redirectTo` – {(string|function())=} – value to update
* {@link angular.module.ng.$location $location} path with and trigger route redirection.
*