]> git.lizzy.rs Git - rust.git/blob - src/docs/missing_docs_in_private_items.txt
Auto merge of #9421 - xphoniex:fix-#9420, r=giraffate
[rust.git] / src / docs / missing_docs_in_private_items.txt
1 ### What it does
2 Warns if there is missing doc for any documentable item
3 (public or private).
4
5 ### Why is this bad?
6 Doc is good. *rustc* has a `MISSING_DOCS`
7 allowed-by-default lint for
8 public members, but has no way to enforce documentation of private items.
9 This lint fixes that.