Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 24d00cc

Browse files
Juanmcuellocaitp
authored andcommitted
docs(error/dupes): Little fix in explanation text.
Little fix in docs/content/error/ngRepeat/dupes.ngdoc. Closes #9673
1 parent accb22d commit 24d00cc

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
@@ -15,7 +15,7 @@ For example the issue can be triggered by this *invalid* code:
1515

1616
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

18-
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:
18+
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

2020
```
2121
<div ng-repeat="value in [4, 4] track by $index"></div>

0 commit comments

Comments
 (0)