From 85e688e4c3c14df05b6430ae7d736ffc9180e9c7 Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Fri, 6 May 2022 14:59:40 +0000 Subject: [PATCH] Fix comment for async closure variant --- compiler/rustc_hir/src/hir.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/rustc_hir/src/hir.rs b/compiler/rustc_hir/src/hir.rs index dfeee3f356ff..9f3072e169c6 100644 --- a/compiler/rustc_hir/src/hir.rs +++ b/compiler/rustc_hir/src/hir.rs @@ -1441,7 +1441,7 @@ pub enum AsyncGeneratorKind { /// An explicit `async` block written by the user. Block, - /// An explicit `async` block written by the user. + /// An explicit `async` closure written by the user. Closure, /// The `async` block generated as the body of an async function.