Skip to content

Commit ca2057c

Browse files
committed
Fix comments
1 parent dfa0db5 commit ca2057c

File tree

1 file changed

+2
-2
lines changed
  • compiler/rustc_ast_lowering/src

1 file changed

+2
-2
lines changed

compiler/rustc_ast_lowering/src/expr.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -752,14 +752,14 @@ impl<'hir> LoweringContext<'_, 'hir> {
752752
await_span,
753753
self.allow_into_future.clone(),
754754
);
755-
//let expr = self.lower_expr_mut(expr);
756755
let into_future_expr = self.expr_call_lang_item_fn(
757756
into_future_span,
758757
hir::LangItem::IntoFutureIntoFuture,
759758
arena_vec![self; expr],
760759
);
761760

762-
// match <into_future_expr> { // mut pinned => loop { .. }
761+
// match <into_future_expr> {
762+
// mut pinned => loop { .. }
763763
// }
764764
hir::ExprKind::Match(
765765
into_future_expr,

0 commit comments

Comments
 (0)