Fix style

This commit is contained in:
bellau 2022-02-12 17:31:17 +01:00
parent 2008607946
commit 3ed19d54db

View File

@ -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),
};