summaryrefslogtreecommitdiff
path: root/syntax.c
diff options
context:
space:
mode:
Diffstat (limited to 'syntax.c')
-rw-r--r--syntax.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/syntax.c b/syntax.c
index 635beea..5d83cdb 100644
--- a/syntax.c
+++ b/syntax.c
@@ -418,7 +418,6 @@ static void syntax_highlight_python(SyntaxState *state, char32_t *line, u32 line
break;
case '\'':
case '"': {
- // @TODO: multi-line strings
bool dbl_quoted = c == '"';
bool is_triple = i < line_len - 2 &&
line[i+1] == c && line[i+2] == c;