]> git.lizzy.rs Git - rust.git/commitdiff
Fix tidy.
authorVadim Chugunov <vadimcn@gmail.com>
Fri, 23 Jan 2015 19:27:16 +0000 (11:27 -0800)
committerVadim Chugunov <vadimcn@gmail.com>
Sat, 24 Jan 2015 02:32:00 +0000 (18:32 -0800)
src/libsyntax/print/pprust.rs
src/test/auxiliary/macro_with_super_1.rs

index dbe4241b8e63e6134ebcbbb13c9f3aad7fb7e4cb..d1cd7631c82d9f097f0b9b1da61b7886719a0cdf 100644 (file)
@@ -1171,7 +1171,7 @@ pub fn print_tts(&mut self, tts: &[ast::TokenTree]) -> IoResult<()> {
             }
             try!(self.print_tt(tt));
             // There should be no space between the module name and the following `::` in paths,
-            // otherwise imported macros get re-parsed from crate metadata incorrectly (issue #20701)
+            // otherwise imported macros get re-parsed from crate metadata incorrectly (#20701)
             suppress_space = match tt {
                 &ast::TtToken(_, token::Ident(_, token::ModName)) |
                 &ast::TtToken(_, token::MatchNt(_, _, _, token::ModName)) |
index ac50be06ef73c998976f6a72bb6290c47fa5eadf..fd2e52bb35503f13ac538a66f7cd6827b15db506 100644 (file)
@@ -11,7 +11,7 @@
 #![crate_type = "lib"]
 
 #[macro_export]
-macro_rules! declare { 
+macro_rules! declare {
     () => (
         pub fn aaa() {}