From 44a070d1b4531a60ed0af2b49dd99e66f912be1e Mon Sep 17 00:00:00 2001 From: Lucio Franco Date: Wed, 19 May 2021 04:14:08 -0400 Subject: [PATCH] doc: add missing backtick (#3799) --- tokio/src/sync/task/atomic_waker.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/src/sync/task/atomic_waker.rs b/tokio/src/sync/task/atomic_waker.rs index 59172041a..8616007a3 100644 --- a/tokio/src/sync/task/atomic_waker.rs +++ b/tokio/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.