From ebe232fd749e469aa6d2e799effd435807553e44 Mon Sep 17 00:00:00 2001 From: NightKev <34855794+DayKev@users.noreply.github.com> Date: Mon, 15 Sep 2025 18:11:59 -0700 Subject: [PATCH] Fix typo --- 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 6221a384b42..6188ab2bfde 100644 --- a/test/@types/vitest.d.ts +++ b/test/@types/vitest.d.ts @@ -84,7 +84,7 @@ interface GameManagerMatchers { * Check if the {@linkcode GameManager} has shown the given message at least once in the current test case. * @param expectedMessage - The expected message to be displayed * @remarks - * Strings consumed by this function should _always_ be produced by a call to `i18n.t` + * Strings consumed by this function should _always_ be produced by a call to `i18next.t` * to avoid hardcoding text into test files. */ toHaveShownMessage(expectedMessage: string): void;