@@ -2203,37 +2203,39 @@ mod where_keyword {}
22032203///
22042204/// Use `async` in front of `fn`, `closure`, or a `block` to turn the marked code into a `Future`.
22052205/// As such the code will not be run immediately, but will only be evaluated when the returned
2206- /// future is `.await`ed.
2206+ /// future is [ `.await`] ed.
22072207///
2208- /// We have written an [async book] detailing async/ await and trade-offs compared to using threads.
2208+ /// We have written an [async book] detailing ` async`/` await` and trade-offs compared to using threads.
22092209///
22102210/// ## Editions
22112211///
22122212/// `async` is a keyword from the 2018 edition onwards.
22132213///
2214- /// It is available for use in stable rust from version 1.39 onwards.
2214+ /// It is available for use in stable Rust from version 1.39 onwards.
22152215///
22162216/// [`Future`]: future::Future
2217+ /// [`.await`]: ../std/keyword.await.html
22172218/// [async book]: https://rust-lang.github.io/async-book/
22182219mod async_keyword { }
22192220
22202221#[ doc( keyword = "await" ) ]
22212222//
22222223/// Suspend execution until the result of a [`Future`] is ready.
22232224///
2224- /// `.await`ing a future will suspend the current function's execution until the ` executor`
2225+ /// `.await`ing a future will suspend the current function's execution until the executor
22252226/// has run the future to completion.
22262227///
2227- /// Read the [async book] for details on how async/ await and executors work.
2228+ /// Read the [async book] for details on how [` async`]/` await` and executors work.
22282229///
22292230/// ## Editions
22302231///
22312232/// `await` is a keyword from the 2018 edition onwards.
22322233///
2233- /// It is available for use in stable rust from version 1.39 onwards.
2234+ /// It is available for use in stable Rust from version 1.39 onwards.
22342235///
22352236/// [`Future`]: future::Future
22362237/// [async book]: https://rust-lang.github.io/async-book/
2238+ /// [`async`]: ../std/keyword.async.html
22372239mod await_keyword { }
22382240
22392241#[ doc( keyword = "dyn" ) ]
0 commit comments