Skip to content

Commit 9353a32

Browse files
committed
tidy
1 parent fb0da7c commit 9353a32

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

compiler/rustc_middle/src/ty/print/pretty.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,12 @@ pub trait PrettyPrinter<'tcx>: Printer<'tcx> + fmt::Write {
662662
if with_no_queries() {
663663
p!(print_def_path(def_id, args));
664664
} else {
665-
p!(print(def_id), " {{individual function type for", print_value_path(def_id, args), "}}");
665+
p!(
666+
print(def_id),
667+
" {{individual function type for",
668+
print_value_path(def_id, args),
669+
"}}"
670+
);
666671
}
667672
}
668673
ty::FnPtr(ref bare_fn) => p!(print(bare_fn)),

0 commit comments

Comments
 (0)