1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-05-16 07:36:05 +02:00

Update async-traits.md (#2550)

typo fix
This commit is contained in:
ben032 2025-04-26 08:02:52 +10:00 committed by GitHub
parent 3474c07c13
commit 059e75b47c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,7 +4,7 @@ minutes: 5
# Async Traits
Async methods in traits are were stabilized in the 1.75 release. This required
Async methods in traits were stabilized in the 1.75 release. This required
support for using return-position `impl Trait` in traits, as the desugaring for
`async fn` includes `-> impl Future<Output = ...>`.