Rollup merge of #126138 - wbk:patch-1, r=lqd

Fix typo in docs for std::pin
This commit is contained in:
León Orell Valerian Liehr 2024-06-08 04:25:46 +02:00 committed by GitHub
commit 733a6f1a1c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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