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