diff options
author | 2023-10-12 18:30:27 +1030 | |
---|---|---|
committer | 2023-10-12 01:00:27 -0700 | |
commit | c50be68790782e82c268e80e1c5a31c5d8caf093 (patch) | |
tree | 14407c8cb5dd970b2f6b254d62493f9ab8a71998 | |
parent | 2fbb95142a8ad6ce182e034ca11e70fdf2b95c34 (diff) | |
download | bun-c50be68790782e82c268e80e1c5a31c5d8caf093.tar.gz bun-c50be68790782e82c268e80e1c5a31c5d8caf093.tar.zst bun-c50be68790782e82c268e80e1c5a31c5d8caf093.zip |
chore: add missing ending quote (#6436)
-rw-r--r-- | docs/bundler/index.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/bundler/index.md b/docs/bundler/index.md index 7bb04cc82..3069654b2 100644 --- a/docs/bundler/index.md +++ b/docs/bundler/index.md @@ -328,7 +328,7 @@ Depending on the target, Bun will apply different module resolution rules and op All bundles generated with `target: "bun"` are marked with a special `// @bun` pragma, which indicates to the Bun runtime that there's no need to re-transpile the file before execution. - If any entrypoints contains a Bun shebang (`#!/usr/bin/env bun`) the bundler will default to `target: "bun"` instead of `"browser`. + If any entrypoints contains a Bun shebang (`#!/usr/bin/env bun`) the bundler will default to `target: "bun"` instead of `"browser"`. --- |