about summary refs log tree commit diff
diff options
context:
space:
mode:
authorIbraheem Ahmed <ibrah1440@gmail.com>2021-12-07 23:25:44 -0500
committerGitHub <noreply@github.com>2021-12-07 23:25:44 -0500
commitd9e45026b3589779c2b0879fe58e273fcf56a891 (patch)
tree91ba4d404cdc494938525a6f58cb5cab12bf196b
parent477fd7038c235689913abf9208dfa9371cbacd88 (diff)
downloadrust-d9e45026b3589779c2b0879fe58e273fcf56a891.tar.gz
rust-d9e45026b3589779c2b0879fe58e273fcf56a891.zip
fix documentation for `core::ready::Ready`
-rw-r--r--library/core/src/future/ready.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/future/ready.rs b/library/core/src/future/ready.rs
index cc905d288f9..48f20f90a32 100644
--- a/library/core/src/future/ready.rs
+++ b/library/core/src/future/ready.rs
@@ -2,7 +2,7 @@ use crate::future::Future;
 use crate::pin::Pin;
 use crate::task::{Context, Poll};
 
-/// Creates a future that is immediately ready with a value.
+/// A future that is immediately ready with a value.
 ///
 /// This `struct` is created by [`ready()`]. See its
 /// documentation for more.