fix: codespell fixes

This commit is contained in:
Kevin Nadro
2025-04-16 12:16:33 -06:00
parent d210feeebe
commit a5fd0150b8
2 changed files with 2 additions and 2 deletions

View File

@ -202,7 +202,7 @@ export const systemIOMachine = setup({
initial: SystemIOMachineStates.idle, initial: SystemIOMachineStates.idle,
// Remember, this machine and change its projectDirectory at any point // Remember, this machine and change its projectDirectory at any point
// '' will be no project directory, aka clear this machine out! // '' will be no project directory, aka clear this machine out!
// To be the aboslute root of someones computer we should take the string of path.resolve() in node.js which is different for each OS // To be the absolute root of someones computer we should take the string of path.resolve() in node.js which is different for each OS
context: () => ({ context: () => ({
folders: [], folders: [],
defaultProjectFolderName: DEFAULT_PROJECT_NAME, defaultProjectFolderName: DEFAULT_PROJECT_NAME,

View File

@ -59,7 +59,7 @@ export type SystemIOContext = {
defaultProjectFolderName: string defaultProjectFolderName: string
// working project directory that stores all the project folders // working project directory that stores all the project folders
projectDirectoryPath: string projectDirectoryPath: string
// has the application gone through the initialiation of systemIOMachine at least once. // has the application gone through the initialization of systemIOMachine at least once.
// this is required to prevent chokidar from spamming invalid events during initialization. // this is required to prevent chokidar from spamming invalid events during initialization.
hasListedProjects: boolean hasListedProjects: boolean
requestedProjectName: { name: string } requestedProjectName: { name: string }