From 57208cb02e867244af4a599ae88700c6939e0636 Mon Sep 17 00:00:00 2001 From: Dale Seo <5466341+DaleSeo@users.noreply.github.com> Date: Wed, 10 Apr 2024 15:32:47 -0400 Subject: [PATCH] fix typos (#10131) --- docs/runtime/shell.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/runtime/shell.md b/docs/runtime/shell.md index 7379dc703a168..3a85e35877557 100644 --- a/docs/runtime/shell.md +++ b/docs/runtime/shell.md @@ -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"; @@ -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";