From a5fd0150b8a048989ba6548fdecb74d9f92fb71c Mon Sep 17 00:00:00 2001 From: Kevin Nadro Date: Wed, 16 Apr 2025 12:16:33 -0600 Subject: [PATCH] fix: codespell fixes --- src/machines/systemIO/systemIOMachine.ts | 2 +- src/machines/systemIO/utils.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/machines/systemIO/systemIOMachine.ts b/src/machines/systemIO/systemIOMachine.ts index ac7d7968c..1836400b1 100644 --- a/src/machines/systemIO/systemIOMachine.ts +++ b/src/machines/systemIO/systemIOMachine.ts @@ -202,7 +202,7 @@ export const systemIOMachine = setup({ initial: SystemIOMachineStates.idle, // Remember, this machine and change its projectDirectory at any point // '' 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: () => ({ folders: [], defaultProjectFolderName: DEFAULT_PROJECT_NAME, diff --git a/src/machines/systemIO/utils.ts b/src/machines/systemIO/utils.ts index 375a27d80..6230b92e8 100644 --- a/src/machines/systemIO/utils.ts +++ b/src/machines/systemIO/utils.ts @@ -59,7 +59,7 @@ export type SystemIOContext = { defaultProjectFolderName: string // working project directory that stores all the project folders 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. hasListedProjects: boolean requestedProjectName: { name: string }