fix some compile error regressions

This commit is contained in:
Andrew Kelley
2019-08-26 12:43:36 -04:00
parent 6569bfc85e
commit 73a7747a9c
5 changed files with 37 additions and 26 deletions

View File

@@ -841,7 +841,7 @@ void tokenize(Buf *buf, Tokenization *out) {
case TokenizeStateSawAmpersand:
switch (c) {
case '&':
tokenize_error(&t, "`&&` is invalid. Note that `and` is boolean AND.");
tokenize_error(&t, "`&&` is invalid. Note that `and` is boolean AND");
break;
case '=':
set_token_id(&t, t.cur_tok, TokenIdBitAndEq);