aboutsummaryrefslogtreecommitdiffstats
path: root/src/loader.js
diff options
context:
space:
mode:
authorKris Jenkins2012-10-26 15:00:02 +0100
committerPawel Kozlowski2012-11-22 08:28:49 +0100
commit557e3894d79c2542d223168b00d11edc52d4a880 (patch)
tree93fca97d0e7c328bd1da24c1ef9d4144673e55d6 /src/loader.js
parent38a9695413b4334c7c4eee3e9bb5dbb30923b832 (diff)
downloadangular.js-557e3894d79c2542d223168b00d11edc52d4a880.tar.bz2
docs(): Fix a couple of typos in the documentation
Diffstat (limited to 'src/loader.js')
-rw-r--r--src/loader.js4
1 files changed, 2 insertions, 2 deletions
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.
*/