From 9f91b3da243fe05ab63b21db7f75848a7cc4a398 Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Tue, 5 Aug 2025 11:39:30 -0700 Subject: [PATCH] fix: correct spelling error that sneaked through (#1855) I ended up force-pushing https://github.com/openai/codex/pull/1848 because CI jobs were not being triggered after updating the PR on GitHub, so this spelling error sneaked through. --- codex-rs/ollama/src/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-rs/ollama/src/client.rs b/codex-rs/ollama/src/client.rs index 8a15039f..f86271dc 100644 --- a/codex-rs/ollama/src/client.rs +++ b/codex-rs/ollama/src/client.rs @@ -192,7 +192,7 @@ impl OllamaClient { return Ok(()); } PullEvent::Error(err) => { - // Emperically, ollama returns a 200 OK response even when + // Empirically, ollama returns a 200 OK response even when // the output stream includes an error message. Verify with: // // `curl -i http://localhost:11434/api/pull -d '{ "model": "foobarbaz" }'`