From 30ea53f412b9af75469ba1e002d65b24153c7bdc Mon Sep 17 00:00:00 2001 From: kakasoo Date: Fri, 20 Feb 2026 11:09:56 +0900 Subject: [PATCH] fix: correct grammar in error message "doesn't has" to "doesn't have" Closes #18 Co-Authored-By: Claude Opus 4.6 --- src/functions/DeepStrictAssert.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/functions/DeepStrictAssert.ts b/src/functions/DeepStrictAssert.ts index 5c939aa..4fb8d92 100644 --- a/src/functions/DeepStrictAssert.ts +++ b/src/functions/DeepStrictAssert.ts @@ -52,7 +52,7 @@ export const deepStrictAssert = return { [first]: input[first] }; } - throw new Error(`input doesn\'t has key: ${first}`); + throw new Error(`input doesn\'t have key: ${first}`); } };