aboutsummaryrefslogtreecommitdiffstats
path: root/src/loader.js
diff options
context:
space:
mode:
authorHaralan Dobrev2012-10-18 11:03:14 +0300
committerIgor Minar2012-11-11 11:40:18 +0100
commit19a324ce116b6f5a728f5f78f5c19a364a779e22 (patch)
tree18e907141b7902970a4f1c67e380c54665baf0a2 /src/loader.js
parentcd8b78ebfd088cf51847e04b85b8817b5dc0d10c (diff)
downloadangular.js-19a324ce116b6f5a728f5f78f5c19a364a779e22.tar.bz2
docs(angular.module): improve angular.Module#run docs
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 c253da3c..4325e26e 100644
--- a/src/loader.js
+++ b/src/loader.js
@@ -215,8 +215,8 @@ function setupModuleLoader(window) {
* @param {Function} initializationFn Execute this function after injector creation.
* Useful for application initialization.
* @description
- * Use this method to register work which needs to be performed when the injector with
- * with the current module is finished loading.
+ * Use this method to register work which should be performed when the injector is done
+ * loading all modules.
*/
run: function(block) {
runBlocks.push(block);