We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a407f74 commit 407094eCopy full SHA for 407094e
src/libsyntax/print/pprust.rs
@@ -314,7 +314,7 @@ fn print_region(s: ps, region: @ast::region) {
314
ast::re_anon { word_space(s, "&"); }
315
ast::re_named(name) {
316
word(s.s, "&");
317
- word_space(s, *name);
+ word(s.s, *name);
318
}
319
320
@@ -860,7 +860,7 @@ fn print_vstore(s: ps, t: ast::vstore) {
860
ast::vstore_fixed(none) { word(s.s, "_"); }
861
ast::vstore_uniq { word(s.s, "~"); }
862
ast::vstore_box { word(s.s, "@"); }
863
- ast::vstore_slice(r) { print_region(s, r); }
+ ast::vstore_slice(r) { print_region(s, r); word(s.s, "."); }
864
865
866
0 commit comments