docs(angular.module): improve angular.Module#run docs

This commit is contained in:
Haralan Dobrev 2012-10-18 11:03:14 +03:00 committed by Igor Minar
parent 80927c5811
commit 5ee3bbee90

View file

@ -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);