aboutsummaryrefslogtreecommitdiff
path: root/build2/lexer.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/lexer.hxx')
-rw-r--r--build2/lexer.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/build2/lexer.hxx b/build2/lexer.hxx
index 45d69d9..b71167a 100644
--- a/build2/lexer.hxx
+++ b/build2/lexer.hxx
@@ -23,7 +23,7 @@ namespace build2
// restrict certain character (e.g., '/') from appearing in the name. The
// attribute mode is like value except it doesn't treat '{' and '}' as
// special (so we cannot have name groups in attributes). The eval mode is
- // used in the evaluation context. Quoted are internal modes and should not
+ // used in the evaluation context. Quoted modes are internal and should not
// be set explicitly.
//
// Note that the normal, value, and eval modes split words separated by the
@@ -124,9 +124,9 @@ namespace build2
lexer_mode mode;
char sep_pair;
- bool sep_space; // Are whitespaces separators (see skip_spaces())?
- bool sep_newline; // Is newline special (see skip_spaces())?
- bool quotes; // Recognize quoted fragments.
+ bool sep_space; // Are whitespaces separators (see skip_spaces())?
+ bool sep_newline; // Is newline special (see skip_spaces())?
+ bool quotes; // Recognize quoted fragments.
const char* escapes; // Effective escape sequences to recognize.