aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/error/compile/utrat.ngdoc
diff options
context:
space:
mode:
authorIgor Minar2013-08-08 10:59:48 -0700
committerIgor Minar2013-08-08 11:02:30 -0700
commite27fb4ddd69126834ced3f200da959b19d5b2160 (patch)
tree52afcbf929ed452d08ba9fdbd2d7e793b7b23f09 /docs/content/error/compile/utrat.ngdoc
parentcaa71c2772284c3d108c41ac120491b7137fabf7 (diff)
downloadangular.js-e27fb4ddd69126834ced3f200da959b19d5b2160.tar.bz2
docs(minErr): rename compile/utrat to compile/uterdir
Diffstat (limited to 'docs/content/error/compile/utrat.ngdoc')
-rw-r--r--docs/content/error/compile/utrat.ngdoc34
1 files changed, 0 insertions, 34 deletions
diff --git a/docs/content/error/compile/utrat.ngdoc b/docs/content/error/compile/utrat.ngdoc
deleted file mode 100644
index a6c647bb..00000000
--- a/docs/content/error/compile/utrat.ngdoc
+++ /dev/null
@@ -1,34 +0,0 @@
-@ngdoc error
-@name $compile:utrat
-@fullName Unterminated Directive
-@description
-
-This error occurs when using multi-element directives and a `directive-start` attribute fails to form a matching pair with a corresponding `directive-end` attribute.
-A `directive-start` should have a matching `directive-end` on a sibling node in the DOM. For instance,
-
-```
-<table>
- <tr ng-repeat-start="item in list">I get repeated</tr>
- <tr ng-repeat-end>I also get repeated</tr>
-</table>
-```
-
-is a valid example.
-
-This error can occur in several different ways. One is by leaving out the `directive-end` attribute, like so:
-
-```
-<div>
- <span foo-start></span>
-</div>
-```
-
-Another is by nesting a `directive-end` inside of `directive-start`, or vice versa:
-
-```
-<div>
- <span foo-start><span foo-end></span></span>
-</div>
-```
-
-To avoid this error, make sure each `directive-start` you use has a matching `directive-end` on a sibling node in the DOM.