We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Future::poll()
1 parent bd12986 commit c9be7b8Copy full SHA for c9be7b8
library/core/src/future/future.rs
@@ -81,7 +81,7 @@ pub trait Future {
81
/// An implementation of `poll` should strive to return quickly, and should
82
/// not block. Returning quickly prevents unnecessarily clogging up
83
/// threads or event loops. If it is known ahead of time that a call to
84
- /// `poll` may end up taking awhile, the work should be offloaded to a
+ /// `poll` may end up taking a while, the work should be offloaded to a
85
/// thread pool (or something similar) to ensure that `poll` can return
86
/// quickly.
87
///
0 commit comments