Skip to content

Commit f4eb44e

Browse files
committed
whitespace after colon, not before
1 parent 66a12f5 commit f4eb44e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libsyntax/parse/parser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4612,7 +4612,7 @@ impl<'a> Parser<'a> {
46124612
fn complain_if_pub_macro(&mut self, visa: Visibility, span: Span) {
46134613
match visa {
46144614
Public => {
4615-
let is_macro_rules :bool = match self.token {
4615+
let is_macro_rules: bool = match self.token {
46164616
token::Ident(sid, _) => sid.name == intern("macro_rules"),
46174617
_ => false,
46184618
};

0 commit comments

Comments
 (0)