1
0
mirror of https://github.com/bspeice/dtparse synced 2025-07-03 14:54:57 -04:00

...I may be an idiot.

This commit is contained in:
Bradlee Speice
2018-07-02 23:00:45 -04:00
parent c566c5b7c8
commit 2b90bf6ed7
3 changed files with 7 additions and 7 deletions

View File

@ -718,7 +718,7 @@ impl Parser {
}
i += 1;
} else if !self.info.get_jump(&l[i]) || fuzzy {
} else if !(self.info.get_jump(&l[i]) || fuzzy) {
return Err(ParseError::UnrecognizedToken(l[i].clone()));
} else {
skipped_idxs.push(i);