about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/keyword_docs.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/libstd/keyword_docs.rs b/src/libstd/keyword_docs.rs
index 24683e36b88..75a50ad8753 100644
--- a/src/libstd/keyword_docs.rs
+++ b/src/libstd/keyword_docs.rs
@@ -853,6 +853,7 @@ mod loop_keyword { }
 /// ```
 /// 
 /// For more information on `match` and matching in general, see the [Reference].
+/// 
 /// [Reference]: ../reference/expressions/match-expr.html
 mod match_keyword { }
 
@@ -892,11 +893,13 @@ mod mod_keyword { }
 /// 
 /// // x is no longer available
 /// ```
-///
+/// 
+/// For more information on the `move` keyword, see the [closure]'s section
+/// of the Rust book or the [threads] section
+/// 
 /// [`Fn` trait]: ../std/ops/trait.Fn.html
 /// [closure]: ../book/ch13-01-closures.html
 /// [threads]: ../book/ch16-01-threads.html#using-move-closures-with-threads
-/// [not yet complete]: https://github.com/rust-lang/rust/issues/34601
 mod move_keyword { }
 
 #[doc(keyword = "mut")]