From 5100630dcd634cb5db5e030a9f439a03057a5a25 Mon Sep 17 00:00:00 2001 From: ast-ral <33921117+ast-ral@users.noreply.github.com> Date: Mon, 11 Oct 2021 21:00:02 -0700 Subject: [PATCH] fix minor spelling error in Poll::ready docs --- library/core/src/task/poll.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/task/poll.rs b/library/core/src/task/poll.rs index 3e0b3e89758a6..80e1458dc9421 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