Skip to content

Commit

Permalink
docs(Configuration): remove typo extra underscore (#6358)
Browse files Browse the repository at this point in the history
* remove typo extra underscore

* Update output.mdx
  • Loading branch information
peilingjiang authored Aug 31, 2022
1 parent 73993d9 commit db5dcd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/content/configuration/output.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -1501,7 +1501,7 @@ which will yield the following:
//Test Comment
else root['MyLibrary'] = factory();
})(self, function () {
return __entry_return_;
return _entry_return_;
});
```

Expand Down

1 comment on commit db5dcd2

@vercel
Copy link

@vercel vercel bot commented on db5dcd2 Aug 31, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.