fix minor spelling error in Poll::ready docs

This commit is contained in:
ast-ral 2021-10-11 21:00:02 -07:00 committed by GitHub
parent 97e3b30285
commit 5100630dcd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -97,7 +97,7 @@ impl<T> Poll<T> {
/// Extracts the successful type of a [`Poll<T>`].
///
/// When combined with the `?` operator, this function will
/// propogate any [`Poll::Pending`] values to the caller, and
/// propagate any [`Poll::Pending`] values to the caller, and
/// extract the `T` from [`Poll::Ready`].
///
/// # Examples