about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLeón Orell Valerian Liehr <me@fmease.dev>2024-06-08 04:25:46 +0200
committerGitHub <noreply@github.com>2024-06-08 04:25:46 +0200
commit733a6f1a1cf3411f211c7fd4407bcacd9f20bdf3 (patch)
treeaa65c043e4f6a63c2915ce02c06b4e8425c454a9
parent8e225fbac899640436f932156cda7914ffd398e7 (diff)
parentf82f0530f36914545820f6307f73ab024fb82441 (diff)
Rollup merge of #126138 - wbk:patch-1, r=lqd
Fix typo in docs for std::pin
-rw-r--r--library/core/src/pin.rs2
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