diff options
| author | Didier Durand <[email protected]> | 2025-07-05 17:23:39 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-05 15:23:39 +0000 |
| commit | ab96676e360b57cb5467826793288d4d6e003d60 (patch) | |
| tree | 2367b013462ed831cc436b1b1632915c0aaf6e2b /packages/core/src | |
| parent | 47dc16d243d7a7fb82f52ad5028d2c0692b8e333 (diff) | |
fix typos in diverse files (#3284)
Co-authored-by: Scott Densmore <[email protected]>
Diffstat (limited to 'packages/core/src')
| -rw-r--r-- | packages/core/src/utils/editCorrector.ts | 2 | ||||
| -rw-r--r-- | packages/core/src/utils/editor.ts | 2 | ||||
| -rw-r--r-- | packages/core/src/utils/nextSpeakerChecker.ts | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/packages/core/src/utils/editCorrector.ts b/packages/core/src/utils/editCorrector.ts index 0853e465..a12c7364 100644 --- a/packages/core/src/utils/editCorrector.ts +++ b/packages/core/src/utils/editCorrector.ts @@ -177,7 +177,7 @@ export async function ensureCorrectEdit( return result; } } else { - // Unescaping old_string resulted in > 1 occurrences + // Unescaping old_string resulted in > 1 occurrence const result: CorrectedEditResult = { params: { ...originalParams }, occurrences, // This will be > 1 diff --git a/packages/core/src/utils/editor.ts b/packages/core/src/utils/editor.ts index 8e85f13c..8d95a593 100644 --- a/packages/core/src/utils/editor.ts +++ b/packages/core/src/utils/editor.ts @@ -138,7 +138,7 @@ export function getDiffCommand( /** * Opens a diff tool to compare two files. * Terminal-based editors by default blocks parent process until the editor exits. - * GUI-based editors requires args such as "--wait" to block parent process. + * GUI-based editors require args such as "--wait" to block parent process. */ export async function openDiff( oldPath: string, diff --git a/packages/core/src/utils/nextSpeakerChecker.ts b/packages/core/src/utils/nextSpeakerChecker.ts index 66fa4395..165f277a 100644 --- a/packages/core/src/utils/nextSpeakerChecker.ts +++ b/packages/core/src/utils/nextSpeakerChecker.ts @@ -112,7 +112,7 @@ export async function checkNextSpeaker( }; } - // Things checked out. Lets proceed to potentially making an LLM request. + // Things checked out. Let's proceed to potentially making an LLM request. const lastMessage = curatedHistory[curatedHistory.length - 1]; if (!lastMessage || lastMessage.role !== 'model') { |
