diff options
author | 2023-07-22 00:43:34 +0200 | |
---|---|---|
committer | 2023-07-21 15:43:34 -0700 | |
commit | 7ac94e5b4cc0caee38bcd4b82385a45b0e1a3bff (patch) | |
tree | 5b064cc62cafd3ec717911de70a2a7ed2757707f | |
parent | aa1ad7f009173ae01e41f005c563b902f53906c3 (diff) | |
download | bun-7ac94e5b4cc0caee38bcd4b82385a45b0e1a3bff.tar.gz bun-7ac94e5b4cc0caee38bcd4b82385a45b0e1a3bff.tar.zst bun-7ac94e5b4cc0caee38bcd4b82385a45b0e1a3bff.zip |
Typo in loaders.md (#3728)
-rw-r--r-- | docs/bundler/loaders.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/bundler/loaders.md b/docs/bundler/loaders.md index 2dc5103df..c15ce926f 100644 --- a/docs/bundler/loaders.md +++ b/docs/bundler/loaders.md @@ -10,7 +10,7 @@ Bun uses the file extension to determine which built-in _loader_ should be used **JavaScript**. Default for `.cjs` and `.mjs`. -Parses the code and applies a set if default transforms, like dead-code elimination, tree shaking, and environment variable inlining. Note that Bun does not attempt to down-convert syntax at the moment. +Parses the code and applies a set of default transforms, like dead-code elimination, tree shaking, and environment variable inlining. Note that Bun does not attempt to down-convert syntax at the moment. ### `jsx` |