Skip to content

Commit

Permalink
Fix lonely backtick
Browse files Browse the repository at this point in the history
  • Loading branch information
Qwaz committed Oct 4, 2019
1 parent 2e72448 commit d152d48
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 d152d48

Please sign in to comment.