Skip to content

Commit

Permalink
Rollup merge of rust-lang#65113 - Qwaz:master, r=jonas-schievink
Browse files Browse the repository at this point in the history
Fix lonely backtick

That backtick won't be sad anymore
  • Loading branch information
tmandry authored Oct 6, 2019
2 parents f80656c + d152d48 commit 1ac1407
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustc_metadata/decoder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -919,7 +919,7 @@ impl<'a, 'tcx> CrateMetadata {
self.entry_unless_proc_macro(id)
.and_then(|entry| entry.mir.map(|mir| mir.decode((self, tcx))))
.unwrap_or_else(|| {
bug!("get_optimized_mir: missing MIR for `{:?}", self.local_def_id(id))
bug!("get_optimized_mir: missing MIR for `{:?}`", self.local_def_id(id))
})
}

Expand Down

0 comments on commit 1ac1407

Please sign in to comment.