Skip to content

Commit 11fe251

Browse files
committed
Remove a stray backtick
This was not detected by `x test tidy`, presumably because it's inside a directory named "build". Fix it now, because later changes in this PR will cause it to be detected.
1 parent 15b663e commit 11fe251

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

Lines changed: 1 addition & 1 deletion
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)