about summary refs log tree commit diff
path: root/src/test/rustdoc/doc-cfg-hide.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-32/+0
2022-01-20Extra cfg_hide a bit to handle inner cfgsGuillaume Gomez-1/+1
2021-11-02Split doc_cfg and doc_auto_cfg featuresGuillaume Gomez-1/+1
2021-10-05Allow adding a set of cfg's to hide from being implicitly doc(cfg)'dWim Looman-0/+32
By adding #![doc(cfg_hide(foobar))] to the crate attributes the cfg #[cfg(foobar)] (and _only_ that _exact_ cfg) will not be implicitly treated as a doc(cfg) to render a message in the documentation.