remove extra space in .** error message

This commit is contained in:
Travis
2020-10-30 09:46:01 -05:00
committed by Veikka Tuominen
parent e59f44712d
commit bb6e39e274
3 changed files with 3 additions and 3 deletions

View File

@@ -594,7 +594,7 @@ void tokenize(Buf *buf, Tokenization *out) {
case TokenizeStateSawDotStar:
switch (c) {
case '*':
tokenize_error(&t, "`.*` can't be followed by `*`. Are you missing a space?");
tokenize_error(&t, "`.*` can't be followed by `*`. Are you missing a space?");
break;
default:
t.pos -= 1;