From 937dfbfbab2b4d7f361a0ed25ec86c398de254ad Mon Sep 17 00:00:00 2001 From: Davis Vaughan Date: Sat, 20 Apr 2024 07:51:45 -0400 Subject: [PATCH] Swap `\s` for `\\s` --- docs/section-2-using-parsers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/section-2-using-parsers.md b/docs/section-2-using-parsers.md index 2b5e04b8..266ed2a7 100644 --- a/docs/section-2-using-parsers.md +++ b/docs/section-2-using-parsers.md @@ -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