mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-26 20:09:19 +00:00
Fix style
This commit is contained in:
parent
2008607946
commit
3ed19d54db
1 changed files with 1 additions and 1 deletions
|
@ -230,7 +230,7 @@ fn opt_item_without_modifiers(p: &mut Parser, m: Marker) -> Result<(), Marker> {
|
|||
IDENT if p.at_contextual_kw(T![macro_rules]) && p.nth(1) == BANG => macro_rules(p, m),
|
||||
|
||||
T![const] if (la == IDENT || la == T![_] || la == T![mut]) => consts::konst(p, m),
|
||||
T![static] if (la != PIPE && la != T![move] ) => consts::static_(p, m),
|
||||
T![static] if (la != PIPE && la != T![move]) => consts::static_(p, m),
|
||||
|
||||
_ => return Err(m),
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue