From: Ben Pfaff Date: Sun, 11 Sep 2022 03:55:06 +0000 (-0700) Subject: segment: Comment fix. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e01f76e721789bbd1df01811396fd1c4345ae5d;p=pspp segment: Comment fix. --- 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