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)]