aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/error/ngRepeat
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/error/ngRepeat')
-rw-r--r--docs/content/error/ngRepeat/dupes.ngdoc2
-rw-r--r--docs/content/error/ngRepeat/iexp.ngdoc4
-rw-r--r--docs/content/error/ngRepeat/iidexp.ngdoc4
3 files changed, 5 insertions, 5 deletions
diff --git a/docs/content/error/ngRepeat/dupes.ngdoc b/docs/content/error/ngRepeat/dupes.ngdoc
index 175cd676..d3d2186b 100644
--- a/docs/content/error/ngRepeat/dupes.ngdoc
+++ b/docs/content/error/ngRepeat/dupes.ngdoc
@@ -3,7 +3,7 @@
@fullName Duplicate Key in Repeater
@description
-Occurs if there are duplicate keys in an {@link api/ng.directive:ngRepeat ngRepeat} expression. Duplicate keys are banned because AngularJS uses keys to associate DOM nodes with items.
+Occurs if there are duplicate keys in an {@link ng.directive:ngRepeat ngRepeat} expression. Duplicate keys are banned because AngularJS uses keys to associate DOM nodes with items.
By default, collections are keyed by reference which is desirable for most common models but can be problematic for primitive types that are interned (share references).
diff --git a/docs/content/error/ngRepeat/iexp.ngdoc b/docs/content/error/ngRepeat/iexp.ngdoc
index ec3c361a..74442b9f 100644
--- a/docs/content/error/ngRepeat/iexp.ngdoc
+++ b/docs/content/error/ngRepeat/iexp.ngdoc
@@ -3,10 +3,10 @@
@fullName Invalid Expression
@description
-Occurs when there is a syntax error in an {@link api/ng.directive:ngRepeat ngRepeat}'s expression. The expression should be in the form '_item_ in _collection_[ track by _id_]'.
+Occurs when there is a syntax error in an {@link ng.directive:ngRepeat ngRepeat}'s expression. The expression should be in the form '_item_ in _collection_[ track by _id_]'.
Be aware, the ngRepeat directive parses the expression using a regex before sending _collection_ and optionally _id_ to the AngularJS parser. This error comes from the regex parsing.
To resolve, identify and fix errors in the expression, paying special attention to the 'in' and 'track by' keywords in the expression.
-Please consult the api documentation of {@link api/ng.directive:ngRepeat ngRepeat} to learn more about valid syntax.
+Please consult the api documentation of {@link ng.directive:ngRepeat ngRepeat} to learn more about valid syntax.
diff --git a/docs/content/error/ngRepeat/iidexp.ngdoc b/docs/content/error/ngRepeat/iidexp.ngdoc
index 8d9309e2..641f723d 100644
--- a/docs/content/error/ngRepeat/iidexp.ngdoc
+++ b/docs/content/error/ngRepeat/iidexp.ngdoc
@@ -3,7 +3,7 @@
@fullName Invalid Identifier
@description
-Occurs when there is an error in the identifier part of {@link api/ng.directive:ngRepeat ngRepeat}'s expression.
+Occurs when there is an error in the identifier part of {@link ng.directive:ngRepeat ngRepeat}'s expression.
To resolve, use either a valid identifier or a tuple (_key_, _value_) where both _key_ and _value_ are valid identifiers.
@@ -22,4 +22,4 @@ Examples of *valid* syntax:
<div ng-repeat="(id, user) in userMap"></div>
```
-Please consult the api documentation of {@link api/ng.directive:ngRepeat ngRepeat} to learn more about valid syntax.
+Please consult the api documentation of {@link ng.directive:ngRepeat ngRepeat} to learn more about valid syntax.