aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames deBoer2013-08-01 17:28:05 -0700
committerIgor Minar2013-08-07 09:11:15 -0700
commitfe187674b5bace9d738b18a2b6a994d7e253b9ce (patch)
tree0bd00d93781b7e716d8befdead12cd40063051ad
parent446ee4ea1949aa220c3ceeeab4a9c91b9ccea034 (diff)
downloadangular.js-fe187674b5bace9d738b18a2b6a994d7e253b9ce.tar.bz2
docs(minerr): Adds a description for ngRepeat.iexp
Closes #3440
-rw-r--r--docs/content/error/ngRepeat/iexp.ngdoc8
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/content/error/ngRepeat/iexp.ngdoc b/docs/content/error/ngRepeat/iexp.ngdoc
index 18701776..ec3c361a 100644
--- a/docs/content/error/ngRepeat/iexp.ngdoc
+++ b/docs/content/error/ngRepeat/iexp.ngdoc
@@ -2,3 +2,11 @@
@name ngRepeat:iexp
@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_]'.
+
+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.