From cc2c3688c74daefd59219738cfa7516c7fd8cb7b Mon Sep 17 00:00:00 2001 From: "Juan M. Cuello" Date: Fri, 17 Oct 2014 22:45:36 -0300 Subject: [PATCH] docs(error/dupes): Little fix in explanation text. Little fix in docs/content/error/ngRepeat/dupes.ngdoc. --- docs/content/error/ngRepeat/dupes.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/error/ngRepeat/dupes.ngdoc b/docs/content/error/ngRepeat/dupes.ngdoc index d3d2186ba9b2..7fb38b467af3 100644 --- a/docs/content/error/ngRepeat/dupes.ngdoc +++ b/docs/content/error/ngRepeat/dupes.ngdoc @@ -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: ```