Skip to content

Commit e1921ea

Browse files
committed
rustfmt
1 parent 7e66785 commit e1921ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/ra_parser/src/grammar/params.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ enum Flavor {
3030
Function, // Includes trait fn params; omitted param idents are not supported
3131
ImplFn,
3232
FnPointer,
33-
Closure
33+
Closure,
3434
}
3535

3636
fn list_(p: &mut Parser, flavor: Flavor) {
3737
use Flavor::*;
3838

3939
let (bra, ket) = match flavor {
4040
Closure => (T![|], T![|]),
41-
Function | ImplFn | FnPointer => (T!['('], T![')'])
41+
Function | ImplFn | FnPointer => (T!['('], T![')']),
4242
};
4343

4444
let m = p.start();

0 commit comments

Comments
 (0)