From 37571946841a0673301b96245c67e80385d86aaf Mon Sep 17 00:00:00 2001 From: eupn <36292692+eupn@users.noreply.github.com> Date: Sun, 12 Apr 2020 01:52:17 +0800 Subject: [PATCH] 6_future_example.md: fix typo --- src/6_future_example.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);