Skip to content

Commit

Permalink
refactor(core): remove prolyfill from error message (#20121)
Browse files Browse the repository at this point in the history
PR Close #20121
  • Loading branch information
Fabian Wiles authored and jasonaden committed Nov 10, 2017
1 parent d8db0f1 commit b55c2ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/zone/ng_zone.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit b55c2ba

Please sign in to comment.