about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2022-03-06 19:08:38 +0100
committerGitHub <noreply@github.com>2022-03-06 19:08:38 +0100
commite8f38a03b5915e2ed998671c98cfa92ff44205c7 (patch)
tree3c51d0f77612a38067587d872a028bc61deea5af
parentc2d2f6fd14059225d616064196aca3f16d270e68 (diff)
parentbf089331b4a9390d6a54b678c11559e56ca64563 (diff)
downloadrust-e8f38a03b5915e2ed998671c98cfa92ff44205c7.tar.gz
rust-e8f38a03b5915e2ed998671c98cfa92ff44205c7.zip
Rollup merge of #94671 - csmoe:pin-typo, r=m-ou-se
fix pin doc typo

r? `@m-ou-se`
-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 775d2ded9da..cef6a68b4d3 100644
--- a/library/core/src/pin.rs
+++ b/library/core/src/pin.rs
@@ -954,7 +954,7 @@ impl<P, U> DispatchFromDyn<Pin<U>> for Pin<P> where P: DispatchFromDyn<U> {}
 /// stuff(pin!(Foo { /* … */ }));
 /// ```
 ///
-/// ### Manually polling a `Future` (wihout `Unpin` bounds)
+/// ### Manually polling a `Future` (without `Unpin` bounds)
 ///
 /// ```rust
 /// #![feature(pin_macro)]