Skip to content

Commit f3d6c50

Browse files
committed
libsyntax: Fix botched merge
1 parent d48396c commit f3d6c50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libsyntax/print/pprust.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2086,7 +2086,7 @@ fn fn_header_info_to_str(opt_sty: Option<ast::self_ty_>,
20862086
let mut s = visibility_qualified(vis, ~"");
20872087

20882088
match opt_sty {
2089-
Some(ast::sty_static) => str::push_str(s, ~"static "),
2089+
Some(ast::sty_static) => str::push_str(&mut s, ~"static "),
20902090
_ => ()
20912091
};
20922092

0 commit comments

Comments
 (0)