]> git.lizzy.rs Git - rust.git/commitdiff
whitespace after colon, not before
authorest31 <MTest31@outlook.com>
Tue, 29 Dec 2015 12:59:19 +0000 (13:59 +0100)
committerest31 <MTest31@outlook.com>
Wed, 30 Dec 2015 15:23:49 +0000 (16:23 +0100)
src/libsyntax/parse/parser.rs

index d5947ba7ad9bd488bc496f6c6ba0d978a149e03e..32a54d6e357b3d34b0f83851ad205ba24673d2c6 100644 (file)
@@ -4612,7 +4612,7 @@ pub fn parse_impl_item(&mut self) -> PResult<'a, P<ImplItem>> {
     fn complain_if_pub_macro(&mut self, visa: Visibility, span: Span) {
         match visa {
             Public => {
-                let is_macro_rules :bool = match self.token {
+                let is_macro_rulesbool = match self.token {
                     token::Ident(sid, _) => sid.name == intern("macro_rules"),
                     _ => false,
                 };