From 77edce5ded376fee88c66a3cb33f66effd31842e Mon Sep 17 00:00:00 2001 From: Brian Ford Date: Tue, 25 Mar 2014 14:26:54 -0700 Subject: [PATCH] docs(angular.bootstrap): fix param type to DOMElement --- src/Angular.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Angular.js b/src/Angular.js index ec69cc1a..a77ad926 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -1276,7 +1276,7 @@ function angularInit(element, bootstrap) { * * * - * @param {Element} element DOM element which is the root of angular application. + * @param {DOMElement} element DOM element which is the root of angular application. * @param {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.