Skip to content

Commit b14db8f

Browse files
drewpjamesdaily
authored andcommitted
docs(error/ngRepeat/dupes): fix typo
Closes angular#5610
1 parent f1876d1 commit b14db8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/content/error/ngRepeat/dupes.ngdoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ For example the issue can be triggered by this *invalid* code:
1313
<div ng-repeat="value in [4, 4]"></div>
1414
```
1515

16-
To resolve this error either ensure that the items in the collection have unique identity of use the `track by` syntax to specify how to track the association between models and DOM.
16+
To resolve this error either ensure that the items in the collection have unique identity or use the `track by` syntax to specify how to track the association between models and DOM.
1717

1818
To resolve the example above can be resolved by using `track by $index`, which will cause the items to be keyed by their position in the array instead of their value:
1919

0 commit comments

Comments
 (0)