aboutsummaryrefslogtreecommitdiffstats
path: root/src/loader.js
diff options
context:
space:
mode:
authorIgor Minar2012-01-17 12:13:48 -0800
committerIgor Minar2012-01-17 12:19:26 -0800
commit3f98d6ac990fd514065bfff04711ac97a5a2ae4d (patch)
tree40a307ec794dbce9170fa666896b247fcdea2f58 /src/loader.js
parent22309c312fbfbcc383a9daedb20d34d34d299503 (diff)
downloadangular.js-3f98d6ac990fd514065bfff04711ac97a5a2ae4d.tar.bz2
docs(*): more docs
Diffstat (limited to 'src/loader.js')
-rw-r--r--src/loader.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/loader.js b/src/loader.js
index 69ae024f..3abbfd0e 100644
--- a/src/loader.js
+++ b/src/loader.js
@@ -23,9 +23,9 @@ function setupModuleLoader(window) {
* @name angular.module
* @description
*
- * The `angular.module` is a global place for registering angular modules. All modules
- * (angular core or 3rd party) that should be available to an application must be registered
- * using this mechanism.
+ * The `angular.module` is a global place for creating and registering Angular modules. All
+ * modules (angular core or 3rd party) that should be available to an application must be
+ * registered using this mechanism.
*
*
* # Module
@@ -61,7 +61,7 @@ function setupModuleLoader(window) {
* the module is being retrieved for further configuration.
* @param {Function} configFn Option configuration function for the module. Same as
* {@link angular.Module#config Module#config()}.
- * @return {angular.Module}
+ * @returns {module} new module with the {@link angular.Module} api.
*/
return function module(name, requires, configFn) {
if (requires && modules.hasOwnProperty(name)) {