diff options
| author | 0e4ef622 <0e4ef622@gmail.com> | 2019-07-15 10:03:53 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-15 10:03:53 -0500 |
| commit | 04cb314ab994673b2c82dbbc748216653d736ae8 (patch) | |
| tree | f7c2592ab7c4b483276a96c551011b4587492f8c /src/libcore/task | |
| parent | 5480b47d7f9e708300d3ba319869f21cd1ffd487 (diff) | |
| download | rust-04cb314ab994673b2c82dbbc748216653d736ae8.tar.gz rust-04cb314ab994673b2c82dbbc748216653d736ae8.zip | |
Fix typo in RawWaker::new documentation
poiner -> pointer
Diffstat (limited to 'src/libcore/task')
| -rw-r--r-- | src/libcore/task/wake.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/task/wake.rs b/src/libcore/task/wake.rs index f1247239f4f..6f841bd2adf 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 |
