From 55d20bf1b252a74d40aadf85c4b204d75d9c7956 Mon Sep 17 00:00:00 2001 From: QuietMisdreavus Date: Mon, 10 Dec 2018 14:59:44 -0600 Subject: [PATCH] update docs of rustdoc lints --- src/librustc/lint/builtin.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/librustc/lint/builtin.rs b/src/librustc/lint/builtin.rs index a09d167f217..94938ae326f 100644 --- a/src/librustc/lint/builtin.rs +++ b/src/librustc/lint/builtin.rs @@ -309,19 +309,19 @@ declare_lint! { declare_lint! { pub INTRA_DOC_LINK_RESOLUTION_FAILURE, Warn, - "warn about documentation intra links resolution failure" + "failures in resolving intra-doc link targets" } declare_lint! { pub MISSING_DOC_CODE_EXAMPLES, Allow, - "warn about missing code example in an item's documentation" + "detects publicly-exported items without code samples in their documentation" } declare_lint! { pub PRIVATE_DOC_TESTS, Allow, - "warn about doc test in private item" + "detects code samples in docs of private items not documented by rustdoc" } declare_lint! {