Skip to content

Commit ca4fcc7

Browse files
authored
Merge pull request #43 from kakasoo/kakasoo/add-deep-readonly
fix: correct grammar in deepStrictPick error message
2 parents 3dd721a + f615fcd commit ca4fcc7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/functions/DeepStrictPick.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export const deepStrictPick = <T extends object, K extends DeepStrictObjectKeys<
5252
return { [first]: input[first] };
5353
}
5454

55-
throw new Error(`input doesn\'t has key: ${first}`);
55+
throw new Error(`input doesn\'t have key: ${first}`);
5656
}
5757
};
5858

0 commit comments

Comments
 (0)