From e9ec82d2ef2ca93a7efa729e33c84224c32045eb Mon Sep 17 00:00:00 2001 From: Saoud Rizwan <7799382+saoudrizwan@users.noreply.github.com> Date: Tue, 28 Jul 2026 09:45:51 -0700 Subject: [PATCH] docs: remove stray double space in README CLI example (#12594) Co-authored-by: Saoud Rizwan --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 055918ffa0..41c0e5f71d 100644 --- a/README.md +++ b/README.md @@ -226,7 +226,7 @@ Run Cline with zero interaction for scripting and automation. Pipe input, get JS ```bash cline "Run tests and fix any failures" -git diff origin/main | cline "Review these changes for issues" +git diff origin/main | cline "Review these changes for issues" cline --json "List all TODO comments" | jq -r 'select(.type == "agent_event" and .event.text) | .event.text' ```