Skip to content

Commit 533df34

Browse files
sjnimsclaude
andcommitted
fix(command-development): remove inconsistent backtick escaping
The bash pre-execution syntax examples on lines 396-398 used escaped backticks (!\`) while all other examples in the file use unescaped backticks (!`). This creates visual inconsistency in the documentation. Fixes #58 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 03f2cb4 commit 533df34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/plugin-dev/skills/command-development/references/plugin-features-reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -393,9 +393,9 @@ description: Commit with pre-commit validation
393393
allowed-tools: Bash(git:*)
394394
---
395395

396-
Stage changes: !\`git add $1\`
396+
Stage changes: !`git add $1`
397397

398-
Commit changes: !\`git commit -m "$2"\`
398+
Commit changes: !`git commit -m "$2"`
399399

400400
Note: This commit will trigger the plugin's pre-commit hook for validation.
401401
Review hook output for any issues.

0 commit comments

Comments
 (0)