diff options
| author | León Orell Valerian Liehr <me@fmease.dev> | 2024-06-08 04:25:46 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-08 04:25:46 +0200 |
| commit | 733a6f1a1cf3411f211c7fd4407bcacd9f20bdf3 (patch) | |
| tree | aa65c043e4f6a63c2915ce02c06b4e8425c454a9 | |
| parent | 8e225fbac899640436f932156cda7914ffd398e7 (diff) | |
| parent | f82f0530f36914545820f6307f73ab024fb82441 (diff) | |
Rollup merge of #126138 - wbk:patch-1, r=lqd
Fix typo in docs for std::pin
| -rw-r--r-- | library/core/src/pin.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/pin.rs b/library/core/src/pin.rs index d8fc3b7177f..0d2aa3070a1 100644 --- a/library/core/src/pin.rs +++ b/library/core/src/pin.rs @@ -184,7 +184,7 @@ //! requires at least a level of pointer indirection each time a new object is added to the mix //! (and, practically, a heap allocation). //! -//! Although there were other reason as well, this issue of expensive composition is the key thing +//! Although there were other reasons as well, this issue of expensive composition is the key thing //! that drove Rust towards adopting a different model. It is particularly a problem //! when one considers, for example, the implications of composing together the [`Future`]s which //! will eventually make up an asynchronous task (including address-sensitive `async fn` state |
