From e4c05c9f12738bc00bd7edcc196bfcf82fe6b8a3 Mon Sep 17 00:00:00 2001 From: Alex Vega Date: Fri, 6 Feb 2026 17:09:06 +0700 Subject: [PATCH] fix: correct grammar and formatting in command docs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - commit.md: use gender-neutral 'them' instead of 'him' - cleanup-ai-slop.md: fix subject-verb agreement 'is' → 'are' - cleanup-ai-slop.md: add code formatting to 'any' keyword --- docs/commands/cleanup-ai-slop.md | 4 ++-- docs/commands/commit.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/commands/cleanup-ai-slop.md b/docs/commands/cleanup-ai-slop.md index 11fbac0..fd617af 100644 --- a/docs/commands/cleanup-ai-slop.md +++ b/docs/commands/cleanup-ai-slop.md @@ -4,9 +4,9 @@ Check the diff against main, and remove all AI generated slop introduced in this This includes: -- Extra comments that a human wouldn't add or is inconsistent with the rest of the file +- Extra comments that a human wouldn't add or are inconsistent with the rest of the file - Extra defensive checks or try/catch blocks that are abnormal for that area of the codebase (especially if called by trusted / validated codepaths) -- Casts to any to get around type issues +- Casts to `any` to get around type issues - Any other style that is inconsistent with the file Report at the end with only a 1-3 sentence summary of what you changed diff --git a/docs/commands/commit.md b/docs/commands/commit.md index 681a44c..a2f49e8 100644 --- a/docs/commands/commit.md +++ b/docs/commands/commit.md @@ -9,7 +9,7 @@ You are tasked with creating git commits for the changes made during this sessio - Run `git status` to see current changes - Run `git diff` to understand the modifications - Consider whether changes should be one commit or multiple logical commits - - Check if the user ran the following cursor command: /cleanup-ai-slop, and if not prompt him to do it first + - Check if the user ran the following cursor command: /cleanup-ai-slop, and if not prompt them to do it first 2. **Plan your commit(s):** - Identify which files belong together