From 758b213ff603429008ee2c1ddc1e82500a845035 Mon Sep 17 00:00:00 2001 From: Obura Tongoi Date: Sat, 18 Feb 2017 07:41:05 -0800 Subject: [PATCH] Change occurence to occurrence This was causing the following error: webpack.optimize.OccurenceOrderPlugin is not a constructor --- docs/en/workflow/production.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/workflow/production.md b/docs/en/workflow/production.md index a54081095..ef0bc66f1 100644 --- a/docs/en/workflow/production.md +++ b/docs/en/workflow/production.md @@ -24,8 +24,8 @@ module.exports = { warnings: false } }), - // optimize module ids by occurence count - new webpack.optimize.OccurenceOrderPlugin() + // optimize module ids by occurrence count + new webpack.optimize.OccurrenceOrderPlugin() ] } ```