From 33e1bdc543bcb7875dcc004d487333393670ed2d Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Sun, 16 Feb 2014 22:02:31 +0000 Subject: chore(errors): rename folders to match namespaces --- docs/content/error/compile/uterdir.ngdoc | 34 -------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 docs/content/error/compile/uterdir.ngdoc (limited to 'docs/content/error/compile/uterdir.ngdoc') diff --git a/docs/content/error/compile/uterdir.ngdoc b/docs/content/error/compile/uterdir.ngdoc deleted file mode 100644 index c1f263f9..00000000 --- a/docs/content/error/compile/uterdir.ngdoc +++ /dev/null @@ -1,34 +0,0 @@ -@ngdoc error -@name $compile:uterdir -@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, - -``` - - I get repeated - I also get repeated -
-``` - -is a valid example. - -This error can occur in several different ways. One is by leaving out the `directive-end` attribute, like so: - -``` -
- -
-``` - -Another is by nesting a `directive-end` inside of `directive-start`, or vice versa: - -``` -
- -
-``` - -To avoid this error, make sure each `directive-start` you use has a matching `directive-end` on a sibling node in the DOM. -- cgit v1.2.3