diff options
| author | Dylan DPC <dylan.dpc@gmail.com> | 2021-03-21 02:01:37 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-21 02:01:37 +0100 |
| commit | 0fa6831655f7fe2a53a2906256450d58998fe09d (patch) | |
| tree | d9c2f8f8c8031a4f002793118433dd80103caf4d | |
| parent | 118aba359b0f467d64c12280d57081e72bde0866 (diff) | |
| parent | 3855597186d1b3339c803fe0fa9f3af422b1605f (diff) | |
| download | rust-0fa6831655f7fe2a53a2906256450d58998fe09d.tar.gz rust-0fa6831655f7fe2a53a2906256450d58998fe09d.zip | |
Rollup merge of #83280 - starthal:fix-typo-keyword-docs, r=dtolnay
Fix pluralization in keyword docs
| -rw-r--r-- | library/std/src/keyword_docs.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/keyword_docs.rs b/library/std/src/keyword_docs.rs index 383eaf2e3a2..e64cbc18bf7 100644 --- a/library/std/src/keyword_docs.rs +++ b/library/std/src/keyword_docs.rs @@ -1031,8 +1031,8 @@ mod mod_keyword {} /// }; /// ``` /// -/// For more information on the `move` keyword, see the [closure]'s section -/// of the Rust book or the [threads] section +/// For more information on the `move` keyword, see the [closures][closure] section +/// of the Rust book or the [threads] section. /// /// [closure]: ../book/ch13-01-closures.html /// [threads]: ../book/ch16-01-threads.html#using-move-closures-with-threads |
