From 6e5be3d9e2d6107ccc03455445aa95f00f9ae77f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Lenoir?= Date: Fri, 26 Apr 2024 16:22:48 +0200 Subject: [PATCH] chore: fix documentation typo --- packages/core/src/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/types.ts b/packages/core/src/types.ts index 6a6c1cb83a..1a97f56479 100644 --- a/packages/core/src/types.ts +++ b/packages/core/src/types.ts @@ -76,7 +76,7 @@ export type PickUnion = Exclude< * Also known as mapped type or homomorphic. * Use this custom Omit utility type to preserve extended Record properties. * - * Why? Using Omit on extended Records results won't preserve the structure. + * Why? Using Omit on extended Records does not preserve the structure. * - https://github.com/microsoft/TypeScript/issues/36981 * - https://github.com/microsoft/TypeScript/issues/54451 */