We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bfa6cd9 + f0144ae commit 761f83fCopy full SHA for 761f83f
library/core/src/future/into_future.rs
@@ -2,7 +2,7 @@ use crate::future::Future;
2
3
/// Conversion into a `Future`.
4
///
5
-/// By implementing `Intofuture` for a type, you define how it will be
+/// By implementing `IntoFuture` for a type, you define how it will be
6
/// converted to a future.
7
8
/// # `.await` desugaring
@@ -29,7 +29,7 @@ use crate::future::Future;
29
/// When implementing futures manually there will often be a choice between
30
/// implementing `Future` or `IntoFuture` for a type. Implementing `Future` is a
31
/// good choice in most cases. But implementing `IntoFuture` is most useful when
32
-/// implementing "async builder" types, which allows the type to be modified
+/// implementing "async builder" types, which allow their values to be modified
33
/// multiple times before being `.await`ed.
34
35
/// ```rust
0 commit comments