File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ use crate::future::Future;
2
2
3
3
/// Conversion into a `Future`.
4
4
///
5
- /// By implementing `Intofuture ` for a type, you define how it will be
5
+ /// By implementing `IntoFuture ` for a type, you define how it will be
6
6
/// converted to a future.
7
7
///
8
8
/// # `.await` desugaring
@@ -29,7 +29,7 @@ use crate::future::Future;
29
29
/// When implementing futures manually there will often be a choice between
30
30
/// implementing `Future` or `IntoFuture` for a type. Implementing `Future` is a
31
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
32
+ /// implementing "async builder" types, which allow their values to be modified
33
33
/// multiple times before being `.await`ed.
34
34
///
35
35
/// ```rust
You can’t perform that action at this time.
0 commit comments