From 50866c234c2758e2d73af0d41ad2405c4252d11f Mon Sep 17 00:00:00 2001 From: Dustin Senos Date: Wed, 23 Aug 2017 13:06:11 -0700 Subject: [PATCH] Updated console.log wording when the PageLoader is waiting for webpack to become idle. (#2835) --- lib/page-loader.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/page-loader.js b/lib/page-loader.js index 1d6c320c..99cc99ed 100644 --- a/lib/page-loader.js +++ b/lib/page-loader.js @@ -99,10 +99,10 @@ export default class PageLoader { } } - // Wait for webpack to became idle if it's not. + // Wait for webpack to become idle if it's not. // More info: https://github.com/zeit/next.js/pull/1511 if (webpackModule && webpackModule.hot && webpackModule.hot.status() !== 'idle') { - console.log(`Waiting webpack to became "idle" to initialize the page: "${route}"`) + console.log(`Waiting for webpack to become "idle" to initialize the page: "${route}"`) const check = (status) => { if (status === 'idle') {