aboutsummaryrefslogtreecommitdiffstats
path: root/src/ng/directive/ngRepeat.js
diff options
context:
space:
mode:
authorStéphane Reynaud2013-11-19 15:11:00 +0100
committerPete Bacon Darwin2013-11-20 14:10:23 +0000
commitdc027f22e55c5a41837341403f90cd5bdbdb7c80 (patch)
treee467ef1d290863b3a6de9b2b4c23a75ae78911aa /src/ng/directive/ngRepeat.js
parent043500fb27ed572f197e81b044518bd159c303e1 (diff)
downloadangular.js-dc027f22e55c5a41837341403f90cd5bdbdb7c80.tar.bz2
docs(ngRepeat): fix typo
Replace "ian" in "in" Closes #5027
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 a5614bf4..cd605bf3 100644
--- a/src/ng/directive/ngRepeat.js
+++ b/src/ng/directive/ngRepeat.js
@@ -99,7 +99,7 @@
* For example: `item in items track by $id(item)`. A built in `$id()` function can be used to assign a unique
* `$$hashKey` property to each item in the array. This property is then used as a key to associated DOM elements
* with the corresponding item in the array by identity. Moving the same object in array would move the DOM
- * element in the same way ian the DOM.
+ * element in the same way in the DOM.
*
* For example: `item in items track by item.id` is a typical pattern when the items come from the database. In this
* case the object identity does not matter. Two objects are considered equivalent as long as their `id`