about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-12-30 16:26:00 -0800
committerAlex Crichton <alex@alexcrichton.com>2014-12-30 16:26:00 -0800
commit2dd519230f581af51e396acd2cead844bc3643d5 (patch)
tree1c87d2fa73b45c17f3bc28328f7a24293f7ffcf8
parent520cdcb79a40b4403092759633d6ed77a7c0e3ac (diff)
parent86d63590654927f900bd69e70099bf60ed5450ff (diff)
downloadrust-2dd519230f581af51e396acd2cead844bc3643d5.tar.gz
rust-2dd519230f581af51e396acd2cead844bc3643d5.zip
rollup merge of #20247: steveklabnik/gh20088
Fixes #20088
-rw-r--r--src/doc/guide.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/doc/guide.md b/src/doc/guide.md
index d094c47da93..99ecd454fd7 100644
--- a/src/doc/guide.md
+++ b/src/doc/guide.md
@@ -889,9 +889,8 @@ fn hello(name: &str) {
 When writing doc comments, adding sections for any arguments, return values,
 and providing some examples of usage is very, very helpful.
 
-You can use the `rustdoc` tool to generate HTML documentation from these doc
-comments. We will talk more about `rustdoc` when we get to modules, as
-generally, you want to export documentation for a full module.
+You can use the [`rustdoc`](rustdoc.html) tool to generate HTML documentation
+from these doc comments.
 
 # Compound Data Types