From b06ca07eee8783ac4fd923ade8fc12f1db2ff068 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Sat, 17 Dec 2022 03:36:07 +0900 Subject: [PATCH] Fix typo in bun.d.ts (#1619) occured -> occurred --- packages/bun-types/bun.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bun-types/bun.d.ts b/packages/bun-types/bun.d.ts index c8e309400e..f52a63bfb5 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;