diff options
| author | Ibraheem Ahmed <ibrah1440@gmail.com> | 2021-12-07 23:25:44 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-07 23:25:44 -0500 |
| commit | d9e45026b3589779c2b0879fe58e273fcf56a891 (patch) | |
| tree | 91ba4d404cdc494938525a6f58cb5cab12bf196b | |
| parent | 477fd7038c235689913abf9208dfa9371cbacd88 (diff) | |
| download | rust-d9e45026b3589779c2b0879fe58e273fcf56a891.tar.gz rust-d9e45026b3589779c2b0879fe58e273fcf56a891.zip | |
fix documentation for `core::ready::Ready`
| -rw-r--r-- | library/core/src/future/ready.rs | 2 |
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. |
