chore(curriculum): change to US spelling (#60852)

This commit is contained in:
Clarence Bakosi
2025-06-17 17:32:03 +01:00
committed by GitHub
parent 128c43b5cc
commit ec764ef7cb
45 changed files with 77 additions and 77 deletions

View File

@@ -8,7 +8,7 @@ import { join } from 'path';
const CURRICULUM_PATH = '../../../shared/config/curriculum.json';
// Curriculum is read using fs, because it is too large for VSCode's LSP to handle type inference which causes anoying behaviour.
// Curriculum is read using fs, because it is too large for VSCode's LSP to handle type inference which causes annoying behavior.
const curriculum = JSON.parse(
readFileSync(join(__dirname, CURRICULUM_PATH), 'utf-8')
) as Curriculum;