@@ -373,7 +373,7 @@ function webpackAsyncContext(req) {
373373}
374374function webpackAsyncContextResolve(req) {
375375 // Here Promise.resolve().then() is used instead of new Promise() to prevent
376- // uncatched exception popping up in devtools
376+ // uncaught exception popping up in devtools
377377 return Promise.resolve().then(function() {
378378 var id = map[req];
379379 if(!(id + 1)) { // check for number or string
@@ -410,7 +410,7 @@ function webpackAsyncContext(req) {
410410}
411411function webpackAsyncContextResolve(req) {
412412 // Here Promise.resolve().then() is used instead of new Promise() to prevent
413- // uncatched exception popping up in devtools
413+ // uncaught exception popping up in devtools
414414 return Promise.resolve().then(function() {
415415 var id = map[req];
416416 if(!(id + 1)) { // check for number or string
@@ -547,7 +547,7 @@ webpackEmptyContext.id = ${JSON.stringify(id)};`;
547547 getSourceForEmptyAsyncContext ( id ) {
548548 return `function webpackEmptyAsyncContext(req) {
549549 // Here Promise.resolve().then() is used instead of new Promise() to prevent
550- // uncatched exception popping up in devtools
550+ // uncaught exception popping up in devtools
551551 return Promise.resolve().then(function() {
552552 var e = new Error('Cannot find module "' + req + '".');
553553 e.code = 'MODULE_NOT_FOUND';
0 commit comments