about summary refs log tree commit diff
diff options
context:
space:
mode:
authorast-ral <33921117+ast-ral@users.noreply.github.com>2021-10-11 21:00:02 -0700
committerGitHub <noreply@github.com>2021-10-11 21:00:02 -0700
commit5100630dcd634cb5db5e030a9f439a03057a5a25 (patch)
treee8b91364e50eec8f7ca89f490de2a8a24f8c5792
parent97e3b30285af8526f8d21072a0c6d3f231e74876 (diff)
downloadrust-5100630dcd634cb5db5e030a9f439a03057a5a25.tar.gz
rust-5100630dcd634cb5db5e030a9f439a03057a5a25.zip
fix minor spelling error in Poll::ready docs
-rw-r--r--library/core/src/task/poll.rs2
1 files changed, 1 insertions, 1 deletions
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<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