diff --git a/src/6_future_example.md b/src/6_future_example.md index 3795023..92b3ef8 100644 --- a/src/6_future_example.md +++ b/src/6_future_example.md @@ -163,7 +163,7 @@ const VTABLE: RawWakerVTable = unsafe { ) }; -// Instead of implementing this on the `MyWaker` oject in `impl Mywaker...` we +// Instead of implementing this on the `MyWaker` object in `impl Mywaker...` we // just use this pattern instead since it saves us some lines of code. fn waker_into_waker(s: *const MyWaker) -> Waker { let raw_waker = RawWaker::new(s as *const (), &VTABLE);