Fix typos

Co-authored-by: Adrian T. <68144167+torranx@users.noreply.github.com>
This commit is contained in:
NightKev 2024-10-03 22:39:36 -07:00 committed by GitHub
parent 0f49c53db3
commit fbf3d31926
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

2
global.d.ts vendored
View File

@ -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`
*/

View File

@ -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", () => {