diff --git a/global.d.ts b/global.d.ts index dd729025146..f4dfa7d4cb2 100644 --- a/global.d.ts +++ b/global.d.ts @@ -6,7 +6,7 @@ declare global { /** * Only used in testing. * Can technically be undefined/null but for ease of use we are going to assume it is always defined. - * Used to looad i18n files exclusively. + * Used to load i18n files exclusively. * * To set up your own server in a test see `game_data.test.ts` */ diff --git a/src/test/system/game_data.test.ts b/src/test/system/game_data.test.ts index 00e9756f63f..fcb7e9067a3 100644 --- a/src/test/system/game_data.test.ts +++ b/src/test/system/game_data.test.ts @@ -11,7 +11,7 @@ import * as account from "../../account"; const apiBase = import.meta.env.VITE_API_BASE_URL ?? "http://localhost:8001"; -/** We ned a custom server. For some reasons I can't extend the listeners of {@linkcode global.i18nServer} with {@linkcode global.i18nServer.use} */ +/** We need a custom server. For some reasons I can't extend the listeners of {@linkcode global.i18nServer} with {@linkcode global.i18nServer.use} */ const server = setupServer(); describe("System - Game Data", () => {