Skip to content

Commit cc19fbe

Browse files
committed
update metadata
1 parent e2e23c0 commit cc19fbe

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

book/src/lint_configuration.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ Please use that command to update the file and do not edit it by hand.
5353
| [ignore-interior-mutability](#ignore-interior-mutability) | `["bytes::Bytes"]` |
5454
| [allow-mixed-uninlined-format-args](#allow-mixed-uninlined-format-args) | `true` |
5555
| [suppress-restriction-lint-in-const](#suppress-restriction-lint-in-const) | `false` |
56+
| [missing-docs-in-crate-items](#missing-docs-in-crate-items) | `false` |
5657

5758
### arithmetic-side-effects-allowed
5859
Suppress checking of the passed type names in all types of operations.
@@ -540,4 +541,12 @@ if no suggestion can be made.
540541
* [indexing_slicing](https://rust-lang.github.io/rust-clippy/master/index.html#indexing_slicing)
541542

542543

544+
### missing-docs-in-crate-items
545+
Whether to **only** check for missing documentation in `pub(crate)` items.
546+
547+
**Default Value:** `false` (`bool`)
548+
549+
* [missing_docs_in_private_items](https://rust-lang.github.io/rust-clippy/master/index.html#missing_docs_in_private_items)
550+
551+
543552

clippy_lints/src/utils/conf.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ define_Conf! {
456456
(suppress_restriction_lint_in_const: bool = false),
457457
/// Lint: MISSING_DOCS_IN_PRIVATE_ITEMS.
458458
///
459-
/// Whether to **only** check for missing docmuentation in `pub(crate)` items.
459+
/// Whether to **only** check for missing documentation in `pub(crate)` items.
460460
(missing_docs_in_crate_items: bool = false),
461461
}
462462

0 commit comments

Comments
 (0)