From 2baedb126354c0fb25de273fbf1ac40473463d43 Mon Sep 17 00:00:00 2001 From: NightKev <34855794+DayKev@users.noreply.github.com> Date: Sat, 2 Aug 2025 15:31:49 -0700 Subject: [PATCH] Fix typo in `type-helpers.test-d.ts` --- test/types/type-helpers.test-d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/types/type-helpers.test-d.ts b/test/types/type-helpers.test-d.ts index 7c1d7af38cd..29f957890fc 100644 --- a/test/types/type-helpers.test-d.ts +++ b/test/types/type-helpers.test-d.ts @@ -21,7 +21,7 @@ describe("AtLeastOne", () => { expectTypeOf<{ baz: number | string }>().toExtend>(); }); - it("should convert to a partial intersected with the union of all individual single properties", () => { + it("should convert to a partial intersection with the union of all individual single properties", () => { expectTypeOf>().branded.toEqualTypeOf< Partial & ({ foo: number } | { bar: string } | { baz: number | string }) >();