From bf089331b4a9390d6a54b678c11559e56ca64563 Mon Sep 17 00:00:00 2001 From: csmoe Date: Sun, 6 Mar 2022 21:40:30 +0800 Subject: [PATCH] fix pin doc typo --- library/core/src/pin.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/pin.rs b/library/core/src/pin.rs index 775d2ded9daad..cef6a68b4d329 100644 --- a/library/core/src/pin.rs +++ b/library/core/src/pin.rs @@ -954,7 +954,7 @@ impl DispatchFromDyn> for Pin

where P: DispatchFromDyn {} /// stuff(pin!(Foo { /* … */ })); /// ``` /// -/// ### Manually polling a `Future` (wihout `Unpin` bounds) +/// ### Manually polling a `Future` (without `Unpin` bounds) /// /// ```rust /// #![feature(pin_macro)]