doc: add missing backtick (#3799)

This commit is contained in:
Lucio Franco 2021-05-19 04:14:08 -04:00 committed by GitHub
parent ce9ca45c92
commit 44a070d1b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.