fix(docs): correct typos in prompt_coder.md#577
Open
h55nick wants to merge 1 commit intojust-every:mainfrom
Open
fix(docs): correct typos in prompt_coder.md#577h55nick wants to merge 1 commit intojust-every:mainfrom
h55nick wants to merge 1 commit intojust-every:mainfrom
Conversation
- Fix "a fork Codex CLI" → "a fork of Codex CLI" - Fix "it is focus" → "it is focused", "feature" → "features" - Fix "maintable" → "maintainable" - Fix "spagetti" → "spaghetti" - Complete incomplete sentence: "Retaining it at scale significant increasing the" → "Retaining it at scale significantly increases context size and maintenance burden." - Fix "requested be by" → "requested by" - Fix "CPD connection" → "CDP connection" (Chrome DevTools Protocol) - Remove double-space before "Model Guide" - Fix "explaination" → "explanation" - Fix "Compelete" → "Complete" - Fix "Do not as the user" → "Do not ask the user" - Remove "a" from "a less efficient" → "less efficient" - Strip trailing whitespace from multiple lines - Add final newline
h55nick
commented
Apr 26, 2026
| - Work autonomously as long as possible. | ||
| - Split out tasks using agents to optimise token usage. | ||
| - Compelete tasks on behalf of the user whenever possible. Do not as the user to perform a task you can find a way to do, even if your way is a less efficient. | ||
| - Complete tasks on behalf of the user whenever possible. Do not ask the user to perform a task you can find a way to do, even if your way is less efficient. |
Author
There was a problem hiding this comment.
This is what I wanted to fix originally, but had coder review the entire file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes typos, grammatical errors, and minor formatting issues in
code-rs/core/prompt_coder.md. This file is baked into the shipped binary viainclude_str!incode-rs/core/src/client_common.rsand is therefore part of the live system prompt sent to every model invocation. Correcting the typos improves the fidelity of the instructions the model receives and the polish of any prompt dumps users make.Changes
All edits are in a single file (
code-rs/core/prompt_coder.md):a fork Codex CLIa fork of Codex CLIit is focus on providingit is focused on providinga number of featurea number of featuresmaintablemaintainablespagettispaghettiRetaining it at scale significant increasing the(incomplete sentence)Retaining it at scale significantly increases context size and maintenance burden.requested be by the userrequested by the userCPD connectionCDP connection(Chrome DevTools Protocol)## Model Guide(double space)## Model GuideexplainationexplanationCompelete tasksComplete tasksDo not as the userDo not ask the usera less efficientless efficientValidation
git --no-pager diff --stat— 1 file changed, 11 insertions(+), 11 deletions(-)include_str!so the only compile-time impact is a byte-for-byte embed of the new text; the build cannot regress from a pure text edit../build-fast.shlocally in the environment I authored this from (no Rust toolchain installed), so I'm relying on CI to confirm. Happy to rebuild locally if a maintainer prefers.Commit message
Notes for reviewers
Retaining it at scale...line was a truncated sentence in the original (Retaining it at scale significant increasing the). I took a best-guess completion that matches surrounding style; happy to swap in whatever the maintainers originally intended.