diff options
-rw-r--r-- | docs/cli/run.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/cli/run.md b/docs/cli/run.md index 65c4842cc..dcd7edd52 100644 --- a/docs/cli/run.md +++ b/docs/cli/run.md @@ -26,10 +26,11 @@ $ bun run index.ts $ bun run index.tsx ``` -The "naked" `bun` command is equivalent to `bun run`. +Alternatively, you can omit the `run` keyword and use the "naked" command; it behaves identically. ```bash $ bun index.tsx +$ bun index.js ``` ### `--watch` |