From ff813a311ba6f5d797a956f310528b29f27f299d Mon Sep 17 00:00:00 2001 From: Hanlu Date: Tue, 17 Sep 2024 09:39:49 +0800 Subject: [PATCH] fix: correct comment quote --- 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 801d880d..cf49060a 100644 --- a/cli/src/query_testing.rs +++ b/cli/src/query_testing.rs @@ -67,7 +67,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;