Skip to content

Commit

Permalink
Unrolled build for rust-lang#123665
Browse files Browse the repository at this point in the history
Rollup merge of rust-lang#123665 - Jules-Bertholet:patch-1, r=lqd

Fix typo in `Future::poll()` docs

``@rustbot`` label A-docs
  • Loading branch information
rust-timer committed Apr 9, 2024
2 parents 2805aed + c9be7b8 commit ec246ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/core/src/future/future.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ pub trait Future {
/// An implementation of `poll` should strive to return quickly, and should
/// not block. Returning quickly prevents unnecessarily clogging up
/// threads or event loops. If it is known ahead of time that a call to
/// `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
/// thread pool (or something similar) to ensure that `poll` can return
/// quickly.
///
Expand Down

0 comments on commit ec246ef

Please sign in to comment.