Skip to content

Commit 7f3e21e

Browse files
plusvicstepancheg
authored andcommitted
style: fix format
1 parent 014a3af commit 7f3e21e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

protobuf-support/src/lexer/tokenizer.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,8 @@ impl<'a> Tokenizer<'a> {
198198
self.next_token_if(|token| match token {
199199
Token::Symbol(c) if symbols.contains(c) => true,
200200
_ => false,
201-
}).map(|token| token.is_some())
201+
})
202+
.map(|token| token.is_some())
202203
}
203204

204205
pub fn next_symbol_if_eq(&mut self, symbol: char) -> TokenizerResult<bool> {

0 commit comments

Comments
 (0)