diff options
| author | Kris Jenkins | 2012-10-26 15:00:02 +0100 |
|---|---|---|
| committer | Pawel Kozlowski | 2012-11-21 23:06:59 +0100 |
| commit | b21f4a376d2ead526bcde47f0bb1d5580e1c3efa (patch) | |
| tree | 17d2079499a4f4bd5c519b8452b04d1d0a9a7b5d | |
| parent | f28f283fcff83b7227e4fc9e94e1e522e0db2e5d (diff) | |
| download | angular.js-b21f4a376d2ead526bcde47f0bb1d5580e1c3efa.tar.bz2 | |
docs(): Fix a couple of typos in the documentation
| -rw-r--r-- | docs/content/guide/directive.ngdoc | 2 | ||||
| -rw-r--r-- | src/Angular.js | 2 | ||||
| -rw-r--r-- | src/loader.js | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/docs/content/guide/directive.ngdoc b/docs/content/guide/directive.ngdoc index 44c73149..f2a54ace 100644 --- a/docs/content/guide/directive.ngdoc +++ b/docs/content/guide/directive.ngdoc @@ -351,7 +351,7 @@ compiler}. The attributes are: * `controller` - Controller constructor function. The controller is instantiated before the pre-linking phase and it is shared with other directives if they request it by name (see `require` attribute). This allows the directives to communicate with each other and augment - each other behavior. The controller is injectable with the following locals: + each other's behavior. The controller is injectable with the following locals: * `$scope` - Current scope associated with the element * `$element` - Current element diff --git a/src/Angular.js b/src/Angular.js index bea972ef..3a11f3ea 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -832,7 +832,7 @@ function encodeUriQuery(val, pctEncodeSpaces) { * @name ng.directive:ngApp * * @element ANY - * @param {angular.Module} ngApp on optional application + * @param {angular.Module} ngApp an optional application * {@link angular.module module} name to load. * * @description diff --git a/src/loader.js b/src/loader.js index 4325e26e..ecb16608 100644 --- a/src/loader.js +++ b/src/loader.js @@ -30,7 +30,7 @@ function setupModuleLoader(window) { * * # Module * - * A module is a collocation of services, directives, filters, and configure information. Module + * A module is a collocation of services, directives, filters, and configuration information. Module * is used to configure the {@link AUTO.$injector $injector}. * * <pre> @@ -60,7 +60,7 @@ function setupModuleLoader(window) { * @param {!string} name The name of the module to create or retrieve. * @param {Array.<string>=} requires If specified then new module is being created. If unspecified then the * the module is being retrieved for further configuration. - * @param {Function} configFn Option configuration function for the module. Same as + * @param {Function} configFn Optional configuration function for the module. Same as * {@link angular.Module#config Module#config()}. * @returns {module} new module with the {@link angular.Module} api. */ |
