Skip to content

Commit 8e77349

Browse files
committed
fix a comment with uneven number of backticks in rustc_mir_build
this is funny though! apparently tidy parsed `.gitignore`, but did not recognize unignore lines (`!...`), so tidy was ignoring `rustc_mir_build` this whole time (at least for some lints?).
1 parent 33f13f2 commit 8e77349

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_mir_build/src/build/expr/as_rvalue.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
231231
if range.start <= range.end { BinOp::BitAnd } else { BinOp::BitOr };
232232

233233
let mut comparer = |range: u128, bin_op: BinOp| -> Place<'tcx> {
234-
// We can use `ty::TypingEnv::fully_monomorphized()`` here
234+
// We can use `ty::TypingEnv::fully_monomorphized()` here
235235
// as we only need it to compute the layout of a primitive.
236236
let range_val = Const::from_bits(
237237
this.tcx,

0 commit comments

Comments
 (0)