aboutsummaryrefslogtreecommitdiffstats
path: root/src/ng/directive/ngRepeat.js
diff options
context:
space:
mode:
authorJens Rantil2013-06-19 16:56:34 +0200
committerPete Bacon Darwin2013-06-20 11:07:13 +0100
commita7908134cb22c8c1efb21f780d4a6efdfde2b78c (patch)
tree2ef4a50274abbd7163c3921db73e3ce79f025a03 /src/ng/directive/ngRepeat.js
parent53359d549e364759d5b382c229f7d326799bf418 (diff)
downloadangular.js-a7908134cb22c8c1efb21f780d4a6efdfde2b78c.tar.bz2
docs(ngRepeat): fix typo
Diffstat (limited to 'src/ng/directive/ngRepeat.js')
-rw-r--r--src/ng/directive/ngRepeat.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ng/directive/ngRepeat.js b/src/ng/directive/ngRepeat.js
index c0e2292f..f26a587a 100644
--- a/src/ng/directive/ngRepeat.js
+++ b/src/ng/directive/ngRepeat.js
@@ -88,7 +88,7 @@
* For example: `(name, age) in {'adam':10, 'amalie':12}`.
*
* * `variable in expression track by tracking_expression` – You can also provide an optional tracking function
- * which can be used to associate the objects in the collection with the DOM elements. If no tractking function
+ * which can be used to associate the objects in the collection with the DOM elements. If no tracking function
* is specified the ng-repeat associates elements by identity in the collection. It is an error to have
* more than one tracking function to resolve to the same key. (This would mean that two distinct objects are
* mapped to the same DOM element, which is not possible.)