Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 3ed19d5

Browse files
committed
Fix style
1 parent 2008607 commit 3ed19d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/parser/src/grammar/items.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ fn opt_item_without_modifiers(p: &mut Parser, m: Marker) -> Result<(), Marker> {
230230
IDENT if p.at_contextual_kw(T![macro_rules]) && p.nth(1) == BANG => macro_rules(p, m),
231231

232232
T![const] if (la == IDENT || la == T![_] || la == T![mut]) => consts::konst(p, m),
233-
T![static] if (la != PIPE && la != T![move] ) => consts::static_(p, m),
233+
T![static] if (la != PIPE && la != T![move]) => consts::static_(p, m),
234234

235235
_ => return Err(m),
236236
};

0 commit comments

Comments
 (0)