From b4d42514276fb3faf99802cd4d9ae34132ce4e1f Mon Sep 17 00:00:00 2001 From: Hanlu Date: Tue, 17 Sep 2024 09:39:49 +0800 Subject: [PATCH] fix: correct comment quote (cherry picked from commit ff813a311ba6f5d797a956f310528b29f27f299d) --- cli/src/query_testing.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/query_testing.rs b/cli/src/query_testing.rs index cdf2e988..3456dbe6 100644 --- a/cli/src/query_testing.rs +++ b/cli/src/query_testing.rs @@ -62,7 +62,7 @@ pub fn parse_position_comments( if let Ok(text) = node.utf8_text(source) { let mut position = node.start_position(); if position.row > 0 { - // Find the arrow character ("^" or '<-") in the comment. A left arrow + // Find the arrow character ("^" or "<-") in the comment. A left arrow // refers to the column where the comment node starts. An up arrow refers // to its own column. let mut has_left_caret = false;