From 2efe1c2e7b7886f3c0afc91f835247428d9c27d7 Mon Sep 17 00:00:00 2001 From: Zach Pomerantz Date: Wed, 27 Aug 2014 14:07:18 -0700 Subject: [PATCH] docs(compile): `translcuded` -> `transcluded` Oops. Closes #8799 --- 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 5caa41452b22..ac0eab395690 100644 --- a/src/ng/compile.js +++ b/src/ng/compile.js @@ -188,7 +188,7 @@ * * `$transclude` - A transclude linking function pre-bound to the correct transclusion scope: * `function([scope], cloneLinkingFn, futureParentElement)`. * * `scope`: optional argument to override the scope. - * * `cloneLinkingFn`: optional argument to create clones of the original translcuded content. + * * `cloneLinkingFn`: optional argument to create clones of the original transcluded content. * * `futureParentElement`: * * defines the parent to which the `cloneLinkingFn` will add the cloned elements. * * default: `$element.parent()` resp. `$element` for `transclude:'element'` resp. `transclude:true`.