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 7e66785 commit e1921eaCopy full SHA for e1921ea
crates/ra_parser/src/grammar/params.rs
@@ -30,15 +30,15 @@ enum Flavor {
30
Function, // Includes trait fn params; omitted param idents are not supported
31
ImplFn,
32
FnPointer,
33
- Closure
+ Closure,
34
}
35
36
fn list_(p: &mut Parser, flavor: Flavor) {
37
use Flavor::*;
38
39
let (bra, ket) = match flavor {
40
Closure => (T![|], T![|]),
41
- Function | ImplFn | FnPointer => (T!['('], T![')'])
+ Function | ImplFn | FnPointer => (T!['('], T![')']),
42
};
43
44
let m = p.start();
0 commit comments