summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/src/docs/missing_docs_in_private_items.txt
blob: 5d37505bb1716288b6e16ac32c00bb008a85840c (plain)
1
2
3
4
5
6
7
8
9
### What it does
Warns if there is missing doc for any documentable item
(public or private).

### Why is this bad?
Doc is good. *rustc* has a `MISSING_DOCS`
allowed-by-default lint for
public members, but has no way to enforce documentation of private items.
This lint fixes that.