Skip to content

Commit 9de1518

Browse files
Fix typo in debug statement
1 parent 430feb2 commit 9de1518

File tree

1 file changed

+1
-1
lines changed
  • compiler/rustc_mir_build/src/build/matches

1 file changed

+1
-1
lines changed

compiler/rustc_mir_build/src/build/matches/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
231231
let arm_end_blocks: Vec<_> = arm_candidates
232232
.into_iter()
233233
.map(|(arm, candidate)| {
234-
debug!("lowering arm {:?}\ncanidate = {:?}", arm, candidate);
234+
debug!("lowering arm {:?}\ncandidate = {:?}", arm, candidate);
235235

236236
let arm_source_info = self.source_info(arm.span);
237237
let arm_scope = (arm.scope, arm_source_info);

0 commit comments

Comments
 (0)