From 992fcfb0c6a5f1973570bbad30e307d962887428 Mon Sep 17 00:00:00 2001 From: Bertie690 <136088738+Bertie690@users.noreply.github.com> Date: Mon, 15 Sep 2025 21:18:17 -0400 Subject: [PATCH] Fixed missing braces inside comment --- test/@types/vitest.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/@types/vitest.d.ts b/test/@types/vitest.d.ts index bf04dfbdd0e..43e9df190aa 100644 --- a/test/@types/vitest.d.ts +++ b/test/@types/vitest.d.ts @@ -71,7 +71,7 @@ interface GenericMatchers { * @privateRemarks * While this functionality _could_ be simulated by writing * `expect(x.get(y)).toBeDefined()` or - * `expect(x).toContain(y, expect.anything())`, + * `expect(x).toContain([y, expect.anything()])`, * this is still preferred due to being more ergonomic and provides better error messsages. */ toHaveKey: T extends Map ? (expectedKey: K) => void : never;