ci: check for typos in documentation (#16235)

This commit is contained in:
Don Isaac
2025-01-08 01:23:54 -06:00
committed by GitHub
parent 81ecf7556c
commit 76800b049a
9 changed files with 29 additions and 8 deletions

View File

@@ -102,7 +102,7 @@ The default handling of non-zero exit codes can be configured by calling `.nothr
import { $ } from "bun";
// shell promises will not throw, meaning you will have to
// check for `exitCode` manually on every shell command.
$.nothrow(); // equivilent to $.throws(false)
$.nothrow(); // equivalent to $.throws(false)
// default behavior, non-zero exit codes will throw an error
$.throws(true);