aboutsummaryrefslogtreecommitdiffstats
path: root/src/directive/ngRepeat.js
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/directive/ngRepeat.js
parentf59e4b11f11261c234a821db67088f0de88a2852 (diff)
downloadangular.js-afe617a647211bbb2173bb0dd4c4c6d44c11a407.tar.bz2
docs(*): renaming incorrect widget references to control or directive
Diffstat (limited to 'src/directive/ngRepeat.js')
-rw-r--r--src/directive/ngRepeat.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/directive/ngRepeat.js b/src/directive/ngRepeat.js
index 8e61ba28..efa27153 100644
--- a/src/directive/ngRepeat.js
+++ b/src/directive/ngRepeat.js
@@ -5,7 +5,7 @@
* @name angular.module.ng.$compileProvider.directive.ng-repeat
*
* @description
- * The `ng-repeat` widget instantiates a template once per item from a collection. Each template
+ * The `ng-repeat` directive instantiates a template once per item from a collection. Each template
* instance gets its own scope, where the given loop variable is set to the current collection item,
* and `$index` is set to the item index or key.
*
@@ -17,7 +17,6 @@
* * `'middle'`
* * `'last'`
*
- * Note: Although `ng-repeat` looks like a directive, it is actually an attribute widget.
*
* @element ANY
* @scope