From c5c53f3666eb0bb212f7f915be932a062a4e0de8 Mon Sep 17 00:00:00 2001 From: William KOZA Date: Tue, 3 Jan 2017 19:03:58 +0100 Subject: [PATCH] fix(core): Remove reference to "Angular 2" in dev mode warning (#13751) --- modules/@angular/core/src/application_ref.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/@angular/core/src/application_ref.ts b/modules/@angular/core/src/application_ref.ts index da93fd0f88b2b..4e8a2aff85267 100644 --- a/modules/@angular/core/src/application_ref.ts +++ b/modules/@angular/core/src/application_ref.ts @@ -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; }