fix a comment with uneven number of backticks in rustc_mir_build · rust-lang/rust@8e77349 (original) (raw)
File tree
1 file changed
lines changed
- compiler/rustc_mir_build/src/build/expr
1 file changed
lines changed
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -231,7 +231,7 @@ impl<'a, 'tcx> Builder<'a, 'tcx> { | ||
231 | 231 | if range.start <= range.end { BinOp::BitAnd } else { BinOp::BitOr }; |
232 | 232 | |
233 | 233 | let mut comparer = |range: u128, bin_op: BinOp |
234 | -// We can use `ty::TypingEnv::fully_monomorphized()`` here | |
234 | +// We can use `ty::TypingEnv::fully_monomorphized()` here | |
235 | 235 | // as we only need it to compute the layout of a primitive. |
236 | 236 | let range_val = Const::from_bits( |
237 | 237 | this.tcx, |