From fbf3d31926fad156955f4c9efc940e933cca324b Mon Sep 17 00:00:00 2001 From: NightKev <34855794+DayKev@users.noreply.github.com> Date: Thu, 3 Oct 2024 22:39:36 -0700 Subject: [PATCH] Fix typos Co-authored-by: Adrian T. <68144167+torranx@users.noreply.github.com> --- global.d.ts | 2 +- src/test/system/game_data.test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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", () => {