Rollup merge of #78377 - LeSeulArtichaut:patch-docs, r=jonas-schievink

Fix typo in debug statement
This commit is contained in:
Yuki Okushi 2020-10-27 08:45:14 +09:00 committed by GitHub
commit b72d70ef61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -231,7 +231,7 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
let arm_end_blocks: Vec<_> = arm_candidates
.into_iter()
.map(|(arm, candidate)| {
debug!("lowering arm {:?}\ncanidate = {:?}", arm, candidate);
debug!("lowering arm {:?}\ncandidate = {:?}", arm, candidate);
let arm_source_info = self.source_info(arm.span);
let arm_scope = (arm.scope, arm_source_info);