From 0d88dcb0fa42e5cf4ab1cc1a3564df7dc40493bb Mon Sep 17 00:00:00 2001 From: Dylan Conway Date: Fri, 19 Jan 2024 19:21:26 -0800 Subject: [PATCH] Update shell.md --- docs/runtime/shell.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/runtime/shell.md b/docs/runtime/shell.md index 9aea702c8d..3afbfde70a 100644 --- a/docs/runtime/shell.md +++ b/docs/runtime/shell.md @@ -53,7 +53,7 @@ const welcome = await $`echo "Hello World!"`.text(); console.log(welcome); // Hello World!\n ``` -To get stdout, stderr, and the exit code, use await or .run: +To get stdout, stderr, and the exit code, use await or `.run`: ```js import { $ } from "bun";