Skip to content

Commit

Permalink
Remove incorrect SqlServer annotation syntax (#29394)
Browse files Browse the repository at this point in the history
  • Loading branch information
TherChenYang authored Dec 13, 2023
1 parent bba0b38 commit 82738af
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ lexer grammar Comments;
import Symbol;

BLOCK_COMMENT: '/*' .*? '*/' -> channel(HIDDEN);
INLINE_COMMENT: (('-- ' | '#') ~[\r\n]* ('\r'? '\n' | EOF) | '--' ('\r'? '\n' | EOF)) -> channel(HIDDEN);
INLINE_COMMENT: ('-- ' ~[\r\n]* ('\r'? '\n' | EOF) | '--' ('\r'? '\n' | EOF)) -> channel(HIDDEN);

0 comments on commit 82738af

Please sign in to comment.