Skip to content

Commit

Permalink
fix typos (#10131)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaleSeo authored Apr 10, 2024
1 parent 5b4b693 commit 57208cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/runtime/shell.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ import { $ } from "bun";
await $`bun run index.ts 2> errors.txt`;
```

### Example: Redirect stdout -> stderr
### Example: Redirect stderr -> stdout

```js
import { $ } from "bun";
Expand All @@ -201,7 +201,7 @@ import { $ } from "bun";
await $`bun run ./index.ts 2>&1`;
```

### Example: Redirect stderr -> stdout
### Example: Redirect stdout -> stderr

```js
import { $ } from "bun";
Expand Down

0 comments on commit 57208cb

Please sign in to comment.