diff options
| author | Anthony Lieuallen | 2011-02-14 13:17:04 -0500 |
|---|---|---|
| committer | Igor Minar | 2011-02-16 00:04:15 -0500 |
| commit | 7cf70c587e436014b2148eb4f12ecda307d25957 (patch) | |
| tree | df8171b59e9abd8515fcb93fd5901abcd08af9f7 /src/Angular.js | |
| parent | 1777110958f76ee4be5760e36c96702223385918 (diff) | |
| download | angular.js-7cf70c587e436014b2148eb4f12ecda307d25957.tar.bz2 | |
Small spelling and grammar fixes in documentation.
Diffstat (limited to 'src/Angular.js')
| -rw-r--r-- | src/Angular.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Angular.js b/src/Angular.js index 710d96f5..4187e9ad 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -195,7 +195,7 @@ function formatError(arg) { * @function * * @description - * Extends the destination object `dst` by copying all of the properties from the `src` objects to + * Extends the destination object `dst` by copying all of the properties from the `src` object(s) to * `dst`. You can specify multiple `src` objects. * * @param {Object} dst The destination object. @@ -741,11 +741,11 @@ function concat(array1, array2, index) { * @function * * @description - * Returns function which calls function `fn` bound to `self` (`self` becomes the `this` for `fn`). + * Returns a function which calls function `fn` bound to `self` (`self` becomes the `this` for `fn`). * Optional `args` can be supplied which are prebound to the function, also known as * [function currying](http://en.wikipedia.org/wiki/Currying). * - * @param {Object} self Context in which `fn` should be evaluated in. + * @param {Object} self Context which `fn` should be evaluated in. * @param {function()} fn Function to be bound. * @param {...*} args Optional arguments to be prebound to the `fn` function call. * @returns {function()} Function that wraps the `fn` with all the specified bindings. @@ -850,8 +850,8 @@ function toKeyValue(obj) { * @TODO rename to ng:autobind to ng:autoboot * * @description - * This section explains how to bootstrap your application with angular using either the angular - * javascript file. + * This section explains how to bootstrap your application with angular, using either the angular + * javascript file, or manually. * * * ## The angular distribution |
