From 7769ed048414dff021720f969372d5063b7dc7ac Mon Sep 17 00:00:00 2001 From: Joshua Nelson Date: Tue, 13 Jul 2021 21:09:03 -0400 Subject: [PATCH] Document private items for rustfmt This is possible now that rustdoc allows passing `--document-private-items` more than once. --- src/comment.rs | 2 +- src/macros.rs | 2 +- src/patterns.rs | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/comment.rs b/src/comment.rs index 0f8118a408ec0..58a2b5e6aecf3 100644 --- a/src/comment.rs +++ b/src/comment.rs @@ -393,7 +393,7 @@ fn identify_comment( } /// Attributes for code blocks in rustdoc. -/// See https://doc.rust-lang.org/rustdoc/print.html#attributes +/// See . enum CodeBlockAttribute { Rust, Ignore, diff --git a/src/macros.rs b/src/macros.rs index 6c5e32716c017..c8ee590b6cc17 100644 --- a/src/macros.rs +++ b/src/macros.rs @@ -1417,7 +1417,7 @@ impl MacroBranch { } } -/// Format `lazy_static!` from https://crates.io/crates/lazy_static. +/// Format `lazy_static!` from . /// /// # Expected syntax /// diff --git a/src/patterns.rs b/src/patterns.rs index 062e9cef9bbd3..0501e76d27727 100644 --- a/src/patterns.rs +++ b/src/patterns.rs @@ -22,11 +22,11 @@ use crate::utils::{format_mutability, mk_sp, mk_sp_lo_plus_one, rewrite_ident}; /// Returns `true` if the given pattern is "short". /// A short pattern is defined by the following grammar: /// -/// [small, ntp]: +/// `[small, ntp]`: /// - single token /// - `&[single-line, ntp]` /// -/// [small]: +/// `[small]`: /// - `[small, ntp]` /// - unary tuple constructor `([small, ntp])` /// - `&[small]`