about summary refs log tree commit diff
diff options
context:
space:
mode:
authorStephen Albert-Moore <stephen@sherbet.space>2021-03-20 00:36:41 -0400
committerStephen Albert-Moore <stephen@sherbet.space>2021-03-20 00:36:41 -0400
commit3855597186d1b3339c803fe0fa9f3af422b1605f (patch)
tree67c8272a84c63b88c9a43a8fb7858e4785cbe5d3
parentb6a12d58f5c81a806980deb104f3a05af9eac235 (diff)
downloadrust-3855597186d1b3339c803fe0fa9f3af422b1605f.tar.gz
rust-3855597186d1b3339c803fe0fa9f3af422b1605f.zip
Fix broken doc link reference
-rw-r--r--library/std/src/keyword_docs.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/keyword_docs.rs b/library/std/src/keyword_docs.rs
index 2eb7e81074f..e64cbc18bf7 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 [closures] section
+/// For more information on the `move` keyword, see the [closures][closure] section
 /// of the Rust book or the [threads] section.
 ///
-/// [closures]: ../book/ch13-01-closures.html
+/// [closure]: ../book/ch13-01-closures.html
 /// [threads]: ../book/ch16-01-threads.html#using-move-closures-with-threads
 mod move_keyword {}