about summary refs log tree commit diff
diff options
context:
space:
mode:
authorStephen Albert-Moore <stephen@sherbet.space>2021-03-18 17:04:58 -0400
committerGitHub <noreply@github.com>2021-03-18 17:04:58 -0400
commitb6a12d58f5c81a806980deb104f3a05af9eac235 (patch)
tree928c6a319b7d2b364c0f6f0a4c3e20e009cb7bc7
parent1705a7d64b833d1c4b69958b0627bd054e6d764b (diff)
downloadrust-b6a12d58f5c81a806980deb104f3a05af9eac235.tar.gz
rust-b6a12d58f5c81a806980deb104f3a05af9eac235.zip
Fix pluralization in keyword docs
-rw-r--r--library/std/src/keyword_docs.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/std/src/keyword_docs.rs b/library/std/src/keyword_docs.rs
index 383eaf2e3a2..2eb7e81074f 100644
--- a/library/std/src/keyword_docs.rs
+++ b/library/std/src/keyword_docs.rs
@@ -1031,10 +1031,10 @@ 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] section
+/// of the Rust book or the [threads] section.
 ///
-/// [closure]: ../book/ch13-01-closures.html
+/// [closures]: ../book/ch13-01-closures.html
 /// [threads]: ../book/ch16-01-threads.html#using-move-closures-with-threads
 mod move_keyword {}