Skip to content

Commit 8739d25

Browse files
authored
Rollup merge of rust-lang#65113 - Qwaz:master, r=jonas-schievink
Fix lonely backtick That backtick won't be sad anymore
2 parents f2a1edc + d152d48 commit 8739d25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/librustc_metadata/decoder.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -919,7 +919,7 @@ impl<'a, 'tcx> CrateMetadata {
919919
self.entry_unless_proc_macro(id)
920920
.and_then(|entry| entry.mir.map(|mir| mir.decode((self, tcx))))
921921
.unwrap_or_else(|| {
922-
bug!("get_optimized_mir: missing MIR for `{:?}", self.local_def_id(id))
922+
bug!("get_optimized_mir: missing MIR for `{:?}`", self.local_def_id(id))
923923
})
924924
}
925925

0 commit comments

Comments
 (0)