From 41117d6182af12fd83843f0ee182cf3a8ec48ed1 Mon Sep 17 00:00:00 2001 From: Greg Venech Date: Sat, 3 Jun 2017 09:33:58 -0400 Subject: [PATCH] docs(api): update `import()` docs in module-methods --- content/api/module-methods.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/api/module-methods.md b/content/api/module-methods.md index a28d98ae9e9c..369e82420d71 100644 --- a/content/api/module-methods.md +++ b/content/api/module-methods.md @@ -63,7 +63,7 @@ if ( module.hot ) { } ``` -The compiler treats this as a split point and will split everything from `lodash` into a separate bundle that will be loaded as soon as the `loadLodash` function is called. See the [async code splitting guide](/guides/code-splitting-async) for more information. +The compiler treats this as a split point and will split everything from `lodash` into a separate bundle. This returns a promise that will resolve to the module once the bundle has been loaded. See the [async code splitting guide](/guides/code-splitting-async) for more information.