From fda651b90c5ca81322ecb48e85788e0d7daeb078 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kiho=20=C2=B7=20Cham?= Date: Tue, 7 Nov 2017 02:45:45 -0600 Subject: [PATCH] minor typo concurently --> concurrently --- scripts/rollup/build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/rollup/build.js b/scripts/rollup/build.js index 537cd20755b1..38fcec2d9e27 100644 --- a/scripts/rollup/build.js +++ b/scripts/rollup/build.js @@ -654,7 +654,7 @@ rimraf('build', () => { } else if (syncWww) { tasks.push(() => syncReactDom(join('build', 'facebook-www'), syncWww)); } - // rather than run concurently, opt to run them serially + // rather than run concurrently, opt to run them serially // this helps improve console/warning/error output // and fixes a bunch of IO failures that sometimes occurred return runWaterfall(tasks)