From db5dcd227896aa7295c389ab401c1ed9267159d9 Mon Sep 17 00:00:00 2001 From: Peiling Jiang <25191575+peilingjiang@users.noreply.github.com> Date: Wed, 31 Aug 2022 04:51:03 -0700 Subject: [PATCH] docs(Configuration): remove typo extra underscore (#6358) * remove typo extra underscore * Update output.mdx --- src/content/configuration/output.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content/configuration/output.mdx b/src/content/configuration/output.mdx index 63b07faa78f7..1fa1f2331058 100644 --- a/src/content/configuration/output.mdx +++ b/src/content/configuration/output.mdx @@ -924,7 +924,7 @@ Configure how the library will be exposed. Types included by default are `'var'`, `'module'`, `'assign'`, `'assign-properties'`, `'this'`, `'window'`, `'self'`, `'global'`, `'commonjs'`, `'commonjs2'`, `'commonjs-module'`, `'commonjs-static'`, `'amd'`, `'amd-require'`, `'umd'`, `'umd2'`, `'jsonp'` and `'system'`, but others might be added by plugins. -For the following examples, we'll use `__entry_return_` to indicate the values returned by the entry point. +For the following examples, we'll use `_entry_return_` to indicate the values returned by the entry point. #### Expose a Variable @@ -1501,7 +1501,7 @@ which will yield the following: //Test Comment else root['MyLibrary'] = factory(); })(self, function () { - return __entry_return_; + return _entry_return_; }); ```