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 }) >();