fix: typos in prompts and comments (#195)

Used Codex and https://github.com/crate-ci/typos to identify + fix typos

Signed-off-by: Jatan Loya <jatanloya@gmail.com>
This commit is contained in:
Jatan Loya
2025-04-17 07:12:39 -07:00
committed by GitHub
parent b6e3f3f8dd
commit 4926cab476
5 changed files with 10 additions and 10 deletions

View File

@@ -114,7 +114,7 @@ export default function TerminalChatInput({
const editorRef = React.useRef<MultilineTextEditorHandle | null>(null);
// Track the caret row across keystrokes so we can tell whether the cursor
// was *already* on the first/last line before the curren`t key event. This
// was *already* on the first/last line before the current key event. This
// lets us distinguish between a normal vertical navigation (e.g. moving
// from row 1 → row 0 inside a multiline draft) and an attempt to navigate
// the chat history (pressing ↑ again while already at row 0).

View File

@@ -88,7 +88,7 @@ export function initLogger(): Logger {
const isMac = process.platform === "darwin";
const isWin = process.platform === "win32";
// On Mac and Windows, os.tmpdir() returns a user-specifc folder, so prefer
// On Mac and Windows, os.tmpdir() returns a user-specific folder, so prefer
// it there. On Linux, use ~/.local/oai-codex so logs are not world-readable.
const logDir =
isMac || isWin