aboutsummaryrefslogtreecommitdiff
path: root/src/sync/task/atomic_waker.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/sync/task/atomic_waker.rs')
-rw-r--r--src/sync/task/atomic_waker.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sync/task/atomic_waker.rs b/src/sync/task/atomic_waker.rs
index 5917204..8616007 100644
--- a/src/sync/task/atomic_waker.rs
+++ b/src/sync/task/atomic_waker.rs
@@ -29,7 +29,7 @@ pub(crate) struct AtomicWaker {
// `AtomicWaker` is a multi-consumer, single-producer transfer cell. The cell
// stores a `Waker` value produced by calls to `register` and many threads can
-// race to take the waker by calling `wake.
+// race to take the waker by calling `wake`.
//
// If a new `Waker` instance is produced by calling `register` before an existing
// one is consumed, then the existing one is overwritten.