We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46f6cef commit 2351c97Copy full SHA for 2351c97
protobuf-support/src/lexer/tokenizer.rs
@@ -198,7 +198,8 @@ impl<'a> Tokenizer<'a> {
198
self.next_token_if(|token| match token {
199
Token::Symbol(c) if symbols.contains(c) => true,
200
_ => false,
201
- }).map(|token| token.is_some())
+ })
202
+ .map(|token| token.is_some())
203
}
204
205
pub fn next_symbol_if_eq(&mut self, symbol: char) -> TokenizerResult<bool> {
0 commit comments