diff options
Diffstat (limited to 'src/components/PatchHelper.tsx')
-rw-r--r-- | src/components/PatchHelper.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/PatchHelper.tsx b/src/components/PatchHelper.tsx index 391be9d..6ce093f 100644 --- a/src/components/PatchHelper.tsx +++ b/src/components/PatchHelper.tsx @@ -178,7 +178,7 @@ function ReplacementInput({ replacement, setReplacement, replacementError }) { {Object.entries({ "$$": "Insert a $", "$&": "Insert the entire match", - "$\\`": "Insert the substring before the match", + "$`": "Insert the substring before the match", "$'": "Insert the substring after the match", "$n": "Insert the nth capturing group ($1, $2...)" }).map(([placeholder, desc]) => ( |