From 0e01f76e721789bbd1df01811396fd1c4345ae5d Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Sat, 10 Sep 2022 20:55:06 -0700 Subject: [PATCH] segment: Comment fix. --- src/language/lexer/segment.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/language/lexer/segment.h b/src/language/lexer/segment.h index 199e390f7e..d5f846a900 100644 --- a/src/language/lexer/segment.h +++ b/src/language/lexer/segment.h @@ -36,7 +36,7 @@ Some segment types correspond directly to tokens; for example, an "identifier" segment (SEG_IDENTIFIER) becomes an identifier token (T_ID) later in lexical analysis. Other segments contribute to tokens but do not - correspond diectly; for example, multiple quoted string segments + correspond directly; for example, multiple quoted string segments (SEG_QUOTED_STRING) separated by spaces (SEG_SPACES) and "+" punctuators (SEG_PUNCT) may be combined to form a single string token (T_STRING). Still other segments are ignored (e.g. SEG_SPACES) or trigger special -- 2.30.2