From 1eb6036d29687f7b675ff5b28f6cbf105fcb611b Mon Sep 17 00:00:00 2001 From: Chris Schmitz Date: Fri, 26 Dec 2014 10:34:20 -0600 Subject: [PATCH] docs($compile) fix a typo Remove unnecessary 'and' in $compile docs. Closes #10582 --- src/ng/compile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/compile.js b/src/ng/compile.js index 387d6a40..7b2dde88 100644 --- a/src/ng/compile.js +++ b/src/ng/compile.js @@ -477,7 +477,7 @@ * *
* **Best Practice**: if you intend to add and remove transcluded content manually in your directive - * (by calling the transclude function to get the DOM and and calling `element.remove()` to remove it), + * (by calling the transclude function to get the DOM and calling `element.remove()` to remove it), * then you are also responsible for calling `$destroy` on the transclusion scope. *
*