Skip to content

Commit bdf9033

Browse files
authored
Fix typo in error message (#650)
1 parent aaefe8f commit bdf9033

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/logstorage/parser.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ func (lex *lexer) checkPrevAdjacentToken(tokens ...string) error {
206206
}
207207

208208
if !lex.isPrevRawToken(tokens...) {
209-
return fmt.Errorf("missing whitespace or ':' between %q and %q; propbably, the whole string must be put into quotes", lex.prevRawToken, lex.token)
209+
return fmt.Errorf("missing whitespace or ':' between %q and %q; probably, the whole string must be put into quotes", lex.prevRawToken, lex.token)
210210
}
211211

212212
return nil

0 commit comments

Comments
 (0)