From 4aae06a29a17461cb5de95b6d76c7d4ebe30b72c Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Wed, 25 Mar 2020 13:49:47 -0700 Subject: [PATCH] feat: add sentence about rustdoc & std library --- src/meta/doc.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/meta/doc.md b/src/meta/doc.md index 4aa2cbf0cc..a3cc4b73b1 100644 --- a/src/meta/doc.md +++ b/src/meta/doc.md @@ -65,6 +65,8 @@ $ rustc doc.rs --crate-type lib $ rustdoc --test --extern doc="libdoc.rlib" doc.rs ``` +For documentation, `rustdoc` is widely used by the community. It's what is used to generate the [std library docs](https://doc.rust-lang.org/std/). + ### See also: * [The Rust Book: Making Useful Documentation Comments][book]