Update documentation

This commit is contained in:
Christian Poveda 2023-02-20 09:34:49 -05:00
parent c29e767ef1
commit 790f28b153
No known key found for this signature in database
GPG Key ID: 27525EF5E7420A50
2 changed files with 4 additions and 2 deletions

View File

@ -542,7 +542,8 @@ if no suggestion can be made.
### missing-docs-in-crate-items
Whether to **only** check for missing documentation in `pub(crate)` items.
Whether to **only** check for missing documentation in items visible within the current
crate. For example, `pub(crate)` items.
**Default Value:** `false` (`bool`)

View File

@ -36,7 +36,8 @@ declare_clippy_lint! {
}
pub struct MissingDoc {
/// Whether to only check for missing docs in `pub(crate)` items.
/// Whether to **only** check for missing documentation in items visible within the current
/// crate. For example, `pub(crate)` items.
crate_items_only: bool,
/// Stack of whether #[doc(hidden)] is set
/// at each level which has lint attributes.