Skip to content

Commit a70827f

Browse files
authored
Rollup merge of rust-lang#89799 - ast-ral:ready-method-spellck, r=joshtriplett
fix minor spelling error in Poll::ready docs Fixes minor spelling error in the proposed `Poll::ready` docs. Not that my opinion matters, but +1 on the original PR (rust-lang#89651), it reads much nicer to me than the `ready!` macro.
2 parents 4c4652d + 5100630 commit a70827f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/task/poll.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ impl<T> Poll<T> {
9797
/// Extracts the successful type of a [`Poll<T>`].
9898
///
9999
/// When combined with the `?` operator, this function will
100-
/// propogate any [`Poll::Pending`] values to the caller, and
100+
/// propagate any [`Poll::Pending`] values to the caller, and
101101
/// extract the `T` from [`Poll::Ready`].
102102
///
103103
/// # Examples

0 commit comments

Comments
 (0)