about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Kehl <peter.kehl@gmail.com>2023-03-25 06:19:52 -0700
committerPeter Kehl <peter.kehl@gmail.com>2023-03-25 06:19:52 -0700
commit1491c6f3117749cbefd6d0dc9c425a64ecff4f8d (patch)
tree5364982d7ba18dd7b762899f0cae9f6b10f064d6
parent439292bc7913399e406d9bb7e8da0f70c6317c6e (diff)
downloadrust-1491c6f3117749cbefd6d0dc9c425a64ecff4f8d.tar.gz
rust-1491c6f3117749cbefd6d0dc9c425a64ecff4f8d.zip
Rustdoc Book refer to rustdoc::missing_doc_code_examples. Fixes #109592.
-rw-r--r--src/doc/rustdoc/src/write-documentation/what-to-include.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustdoc/src/write-documentation/what-to-include.md b/src/doc/rustdoc/src/write-documentation/what-to-include.md
index e1e09aa4a8a..cf1e6a8d3ca 100644
--- a/src/doc/rustdoc/src/write-documentation/what-to-include.md
+++ b/src/doc/rustdoc/src/write-documentation/what-to-include.md
@@ -39,7 +39,7 @@ warning: 1 warning emitted
 As a library author, adding the lint `#![deny(missing_docs)]` is a great way to
 ensure the project does not drift away from being documented well, and
 `#![warn(missing_docs)]` is a good way to move towards comprehensive
-documentation.  In addition to docs, `#![deny(missing_doc_code_examples)]`
+documentation.  In addition to docs, `#![deny(rustdoc::missing_doc_code_examples)]`
 ensures each function contains a usage example.  In our example above, the
 warning is resolved by adding crate level documentation.