From 634718111eeda03b2e1a855ca8e3bf7a05a966a9 Mon Sep 17 00:00:00 2001 From: FFxSquall Date: Mon, 22 Apr 2019 11:58:13 +0300 Subject: [PATCH] Docs: Fix syntax error --- docs/999-big-list-of-options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/999-big-list-of-options.md b/docs/999-big-list-of-options.md index e17ec2dcd7a..ffc103d6839 100755 --- a/docs/999-big-list-of-options.md +++ b/docs/999-big-list-of-options.md @@ -220,7 +220,7 @@ export default (async () => ({ commonjs(), isProduction && (await import('rollup-plugin-terser')).terser() ] -})(); +}))(); ``` (This example also demonstrates how to use an async IIFE and dynamic imports to avoid unnecessary module loading, which can be surprisingly slow.)