Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir_ty/src/infer.rs')
| -rw-r--r-- | crates/hir_ty/src/infer.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir_ty/src/infer.rs b/crates/hir_ty/src/infer.rs index c91cdec183..e78d3f267f 100644 --- a/crates/hir_ty/src/infer.rs +++ b/crates/hir_ty/src/infer.rs @@ -364,7 +364,7 @@ pub(crate) struct InferenceContext<'a> { table: unify::InferenceTable<'a>, trait_env: Arc<TraitEnvironment>, result: InferenceResult, - /// The return type of the function being inferred, or the closure if we're + /// The return type of the function being inferred, the closure or async block if we're /// currently within one. /// /// We might consider using a nested inference context for checking |