about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTyler Mandry <tmandry@gmail.com>2020-09-01 18:24:44 -0700
committerGitHub <noreply@github.com>2020-09-01 18:24:44 -0700
commitc22de44a80529ddee669b94b9589bd78d15a4e6a (patch)
treec622182bd02754aed9e117c067067a49f7f4323e
parent7edc93b45c6fa6515ce08f3fb8741560d4f2d139 (diff)
parent7eb4b1b4b96642197b1bdeac4998d4d5f725f0cf (diff)
downloadrust-c22de44a80529ddee669b94b9589bd78d15a4e6a.tar.gz
rust-c22de44a80529ddee669b94b9589bd78d15a4e6a.zip
Rollup merge of #76212 - JesHansen:fix-lint-doc, r=jyn514
Document lint missing_doc_code_examples is nightly-only

Closes #76194
-rw-r--r--src/doc/rustdoc/src/lints.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustdoc/src/lints.md b/src/doc/rustdoc/src/lints.md
index d1d6bc1c1fe..8e2869fef55 100644
--- a/src/doc/rustdoc/src/lints.md
+++ b/src/doc/rustdoc/src/lints.md
@@ -51,7 +51,7 @@ warning: missing documentation for a function
 
 ## missing_doc_code_examples
 
-This lint is **allowed by default**. It detects when a documentation block
+This lint is **allowed by default** and is **nightly-only**. It detects when a documentation block
 is missing a code example. For example:
 
 ```rust