Fix typo in comment (#1324)

This commit is contained in:
Samrat Man Singh
2020-03-14 18:26:38 +05:30
committed by GitHub
parent 65e32b3660
commit 66aec23a0b

View File

@@ -267,7 +267,7 @@ impl<'a> Lexer<'a> {
Some('+') => {
self.next_ch();
if !self.looking_at_numeric() {
// If the next characters won't parse as a number, we return Token::Minus
// If the next characters won't parse as a number, we return Token::Plus
return token(Token::Plus, loc);
}
}