aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Ikko Ashimine <eltociear@gmail.com> 2022-12-17 03:36:07 +0900
committerGravatar GitHub <noreply@github.com> 2022-12-16 10:36:07 -0800
commitb06ca07eee8783ac4fd923ade8fc12f1db2ff068 (patch)
tree6667a8f46182ee9424aeb2cafb405cce7a912634
parent01ed3045cb436085d7815bc089d4db21b4095b33 (diff)
downloadbun-b06ca07eee8783ac4fd923ade8fc12f1db2ff068.tar.gz
bun-b06ca07eee8783ac4fd923ade8fc12f1db2ff068.tar.zst
bun-b06ca07eee8783ac4fd923ade8fc12f1db2ff068.zip
Fix typo in bun.d.ts (#1619)
occured -> occurred
-rw-r--r--packages/bun-types/bun.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/bun-types/bun.d.ts b/packages/bun-types/bun.d.ts
index c8e309400..f52a63bfb 100644
--- a/packages/bun-types/bun.d.ts
+++ b/packages/bun-types/bun.d.ts
@@ -2666,7 +2666,7 @@ declare module "bun" {
exitCode: number | null,
signalCode: number | null,
/**
- * If an error occured in the call to waitpid2, this will be the error.
+ * If an error occurred in the call to waitpid2, this will be the error.
*/
error?: Errorlike,
): void | Promise<void>;