docs($compile): fix param description being displayed as code block

Closes #4187
This commit is contained in:
basarat 2013-09-28 14:10:50 +10:00 committed by Pete Bacon Darwin
parent 0f7237d764
commit 3a231d4cbe

View file

@ -97,10 +97,10 @@
* (a DOM element/tree) to a scope. Where:
*
* * `scope` - A {@link ng.$rootScope.Scope Scope} to bind to.
* * `cloneAttachFn` - If `cloneAttachFn` is provided, then the link function will clone the
* `template` and call the `cloneAttachFn` function allowing the caller to attach the
* cloned elements to the DOM document at the appropriate place. The `cloneAttachFn` is
* called as: <br> `cloneAttachFn(clonedElement, scope)` where:
* * `cloneAttachFn` - If `cloneAttachFn` is provided, then the link function will clone the `template`
* and call the `cloneAttachFn` function allowing the caller to attach the
* cloned elements to the DOM document at the appropriate place. The `cloneAttachFn` is
* called as: <br> `cloneAttachFn(clonedElement, scope)` where:
*
* * `clonedElement` - is a clone of the original `element` passed into the compiler.
* * `scope` - is the current scope with which the linking function is working with.