diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/Angular.js | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/src/Angular.js b/src/Angular.js index 475c0585..298d6406 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -1017,7 +1017,9 @@ function angularInit(element, bootstrap) {   * They must use {@link api/ng.directive:ngApp ngApp}.   *   * @param {Element} element DOM element which is the root of angular application. - * @param {Array<String|Function>=} modules an array of module declarations. See: {@link angular.module modules} + * @param {Array<String|Function|Array>=} modules an array of modules to load into the application. + *     Each item in the array should be the name of a predefined module or a (DI annotated) + *     function that will be invoked by the injector as a run block. See: {@link angular.module modules}   * @returns {AUTO.$injector} Returns the newly created injector for this app.   */  function bootstrap(element, modules) { | 
