From 04cb314ab994673b2c82dbbc748216653d736ae8 Mon Sep 17 00:00:00 2001 From: 0e4ef622 <0e4ef622@gmail.com> Date: Mon, 15 Jul 2019 10:03:53 -0500 Subject: [PATCH] Fix typo in RawWaker::new documentation poiner -> pointer --- src/libcore/task/wake.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/task/wake.rs b/src/libcore/task/wake.rs index f1247239f4f50..6f841bd2adf41 100644 --- a/src/libcore/task/wake.rs +++ b/src/libcore/task/wake.rs @@ -31,7 +31,7 @@ impl RawWaker { /// The `data` pointer can be used to store arbitrary data as required /// by the executor. This could be e.g. a type-erased pointer to an `Arc` /// that is associated with the task. - /// The value of this poiner will get passed to all functions that are part + /// The value of this pointer will get passed to all functions that are part /// of the `vtable` as the first parameter. /// /// The `vtable` customizes the behavior of a `Waker` which gets created