From f842849bec97326ad6fb40e9955b6ba9f0f3fc0d Mon Sep 17 00:00:00 2001 From: Jack <8264841+AlanMelody@users.noreply.github.com> Date: Fri, 31 Oct 2025 08:39:21 +0800 Subject: [PATCH] docs: Fix markdown list item spacing in codex-rs/core/review_prompt.md (#4144) Fixes a Markdown parsing issue where a list item used `*` without a following space (`*Line ranges ...`). Per CommonMark, a space after the list marker is required. Updated to `* Line ranges ...` so the guideline renders as a standalone bullet. This change improves readability and prevents mis-parsing in renderers. Co-authored-by: Eric Traut --- codex-rs/core/review_prompt.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codex-rs/core/review_prompt.md b/codex-rs/core/review_prompt.md index 01d93598..040f06ba 100644 --- a/codex-rs/core/review_prompt.md +++ b/codex-rs/core/review_prompt.md @@ -82,6 +82,6 @@ OUTPUT FORMAT: * **Do not** wrap the JSON in markdown fences or extra prose. * The code_location field is required and must include absolute_file_path and line_range. -*Line ranges must be as short as possible for interpreting the issue (avoid ranges over 5–10 lines; pick the most suitable subrange). +* Line ranges must be as short as possible for interpreting the issue (avoid ranges over 5–10 lines; pick the most suitable subrange). * The code_location should overlap with the diff. -* Do not generate a PR fix. \ No newline at end of file +* Do not generate a PR fix.