diff --git a/library/core/src/task/poll.rs b/library/core/src/task/poll.rs index 3e0b3e89758..80e1458dc94 100644 --- a/library/core/src/task/poll.rs +++ b/library/core/src/task/poll.rs @@ -97,7 +97,7 @@ impl Poll { /// Extracts the successful type of a [`Poll`]. /// /// 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