Skip to content

Commit f09c680

Browse files
committed
Fix tidy.
1 parent 5c344d3 commit f09c680

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/libsyntax/print/pprust.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1171,7 +1171,7 @@ impl<'a> State<'a> {
11711171
}
11721172
try!(self.print_tt(tt));
11731173
// There should be no space between the module name and the following `::` in paths,
1174-
// otherwise imported macros get re-parsed from crate metadata incorrectly (issue #20701)
1174+
// otherwise imported macros get re-parsed from crate metadata incorrectly (#20701)
11751175
suppress_space = match tt {
11761176
&ast::TtToken(_, token::Ident(_, token::ModName)) |
11771177
&ast::TtToken(_, token::MatchNt(_, _, _, token::ModName)) |

src/test/auxiliary/macro_with_super_1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#![crate_type = "lib"]
1212

1313
#[macro_export]
14-
macro_rules! declare {
14+
macro_rules! declare {
1515
() => (
1616
pub fn aaa() {}
1717

0 commit comments

Comments
 (0)