diff options
| author | dandoyon | 2011-07-29 18:42:16 -0700 |
|---|---|---|
| committer | Vojta Jina | 2011-07-30 16:41:42 +0200 |
| commit | 1f4b417184ce53af15474de065400f8a686430c5 (patch) | |
| tree | 3098ed2ada9a4be843a2e2a12e8c257e7f7fc32f /src/Compiler.js | |
| parent | 2d8d5aef2918ca0d2503290f86a42701fc98d330 (diff) | |
| download | angular.js-1f4b417184ce53af15474de065400f8a686430c5.tar.bz2 | |
doc(typos): fix couple of typos in the docs
Minor documentation fixes. Should not be any code changes.
One test changed due to dependency on text in documentation.
Diffstat (limited to 'src/Compiler.js')
| -rw-r--r-- | src/Compiler.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Compiler.js b/src/Compiler.js index b76eb3d6..730d175e 100644 --- a/src/Compiler.js +++ b/src/Compiler.js @@ -89,7 +89,7 @@ Template.prototype = { * The compilation is a process of walking the DOM tree and trying to match DOM elements to * {@link angular.markup markup}, {@link angular.attrMarkup attrMarkup}, * {@link angular.widget widgets}, and {@link angular.directive directives}. For each match it - * executes coresponding markup, attrMarkup, widget or directive template function and collects the + * executes corresponding markup, attrMarkup, widget or directive template function and collects the * instance functions into a single template function which is then returned. * * The template function can then be used once to produce the view or as it is the case with @@ -118,7 +118,7 @@ Template.prototype = { * root scope is created. * * `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 approriate place. The `cloneAttachFn` is + * 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. @@ -234,7 +234,7 @@ Compiler.prototype = { * not a problem, but under some circumstances the values for data * is not available until after the full view is computed. If such * values are needed before they are computed the order of - * evaluation can be change using ng:eval-order + * evaluation can be changed using ng:eval-order * * @element ANY * @param {integer|string=} [priority=0] priority integer, or FIRST, LAST constant |
