Swap \s for \\s

This commit is contained in:
Davis Vaughan 2024-04-20 07:51:45 -04:00
parent 4cd23ff6b0
commit 937dfbfbab

View file

@ -706,7 +706,7 @@ Here's an example finding potential documentation comments in C
```scheme
((comment)+ @comment.documentation
(#match? @comment.documentation "^///\s+.*"))
(#match? @comment.documentation "^///\\s+.*"))
```
Here's another example finding Cgo comments to potentially inject with C