refactor(core): remove prolyfill from error message (#20121)

PR Close #20121
This commit is contained in:
Fabian Wiles 2017-11-03 11:16:42 +13:00 committed by Jason Aden
parent d8db0f12a2
commit b55c2ba342
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ export class NgZone {
constructor({enableLongStackTrace = false}) {
if (typeof Zone == 'undefined') {
throw new Error('Angular requires Zone.js prolyfill.');
throw new Error(`In this configuration Angular requires Zone.js`);
}
Zone.assertZonePatched();