fix(core): Remove reference to "Angular 2" in dev mode warning (#13751)

This commit is contained in:
William KOZA 2017-01-03 19:03:58 +01:00 committed by Hans
parent bb0d23f82b
commit c5c53f3666
1 changed files with 1 additions and 1 deletions

View File

@ -469,7 +469,7 @@ export class ApplicationRef_ extends ApplicationRef {
this._loadComponent(compRef);
if (isDevMode()) {
this._console.log(
`Angular 2 is running in the development mode. Call enableProdMode() to enable the production mode.`);
`Angular is running in the development mode. Call enableProdMode() to enable the production mode.`);
}
return compRef;
}