From 85099017fd1d43ba57031ee62aacdb207e58c8bd Mon Sep 17 00:00:00 2001 From: wkrettek <50168688+wkrettek@users.noreply.github.com> Date: Fri, 22 Aug 2025 16:05:39 -0700 Subject: [PATCH] Fix typo in AGENTS.md (#2518) - Change `examole` to `example` --- AGENTS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AGENTS.md b/AGENTS.md index eb2cacd5..672c0086 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -2,7 +2,7 @@ In the codex-rs folder where the rust code lives: -- Crate names are prefixed with `codex-`. For examole, the `core` folder's crate is named `codex-core` +- Crate names are prefixed with `codex-`. For example, the `core` folder's crate is named `codex-core` - When using format! and you can inline variables into {}, always do that. - Never add or modify any code related to `CODEX_SANDBOX_NETWORK_DISABLED_ENV_VAR` or `CODEX_SANDBOX_ENV_VAR`. - You operate in a sandbox where `CODEX_SANDBOX_NETWORK_DISABLED=1` will be set whenever you use the `shell` tool. Any existing code that uses `CODEX_SANDBOX_NETWORK_DISABLED_ENV_VAR` was authored with this fact in mind. It is often used to early exit out of tests that the author knew you would not be able to run given your sandbox limitations.