docs(angular.bootstrap): fix capitalization in error message

Closes #14325
This commit is contained in:
cscport
2016-03-26 15:05:17 -04:00
committed by Georgios Kalpakas
parent 2c9066e012
commit 611dcbc035
+1 -1
View File
@@ -1594,7 +1594,7 @@ function bootstrap(element, modules, config) {
//Encode angle brackets to prevent input from being sanitized to empty string #8683
throw ngMinErr(
'btstrpd',
"App Already Bootstrapped with this Element '{0}'",
"App already bootstrapped with this element '{0}'",
tag.replace(/</,'&lt;').replace(/>/,'&gt;'));
}