fix: typos and grammar in system prompts and source code

This commit is contained in:
Wen
2026-03-13 01:32:34 +00:00
parent ee88b23891
commit 11d3ca3d6e
4 changed files with 6 additions and 6 deletions

View File

@@ -31,7 +31,7 @@ export function randomID(existingIDs?: string[]): string {
id = Math.random().toString(36).substring(2, 11)
tryCount++
if (tryCount > MAX_TRY) {
throw new Error('randomID: too many try')
throw new Error('randomID: too many tries')
}
}