docs(error/dupes): Little fix in explanation text.

Little fix in docs/content/error/ngRepeat/dupes.ngdoc.

Closes #9673
This commit is contained in:
Juan M. Cuello
2014-10-17 22:45:36 -03:00
committed by Caitlin Potter
parent accb22d644
commit 24d00cce4f

View File

@@ -15,7 +15,7 @@ For example the issue can be triggered by this *invalid* code:
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.
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:
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:
```
<div ng-repeat="value in [4, 4] track by $index"></div>