Skip to content

Commit e62ab4b

Browse files
committed
Format next_ch macro
1 parent 8898a98 commit e62ab4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/parse.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -492,10 +492,10 @@ macro_rules! next_ch {
492492
($chars:ident @ $pat:pat $(| $rest:pat)*) => {
493493
match $chars.next() {
494494
Some((_, ch)) => match ch {
495-
$pat $(| $rest)* => ch,
495+
$pat $(| $rest)* => ch,
496496
_ => return false,
497497
},
498-
None => return false
498+
None => return false,
499499
}
500500
};
501501
}

0 commit comments

Comments
 (0)