about summary refs log tree commit diff
path: root/src/test/rustdoc/issue-35169.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-35/+0
2021-07-25Rustdoc accessibility: use real headers for doc itemsbors-7/+7
Part of #87059 Partially reverts #84703 Preview at: https://notriddle.com/notriddle-rustdoc-test/real-headers/std/index.html
2020-07-02Update rustdoc testsGuillaume Gomez-7/+7
2019-01-27Add generate-old-style-files option to rustdocGuillaume Gomez-0/+7
2019-01-27Remove rustdoc old style files generationGuillaume Gomez-8/+0
2018-12-25Remove licensesMark Rousskov-10/+0
2017-06-02rustdoc: Hide `self: Box<Self>` in list of deref methodsOliver Middleton-0/+6
These methods can never be called through deref so there is no point including them. For example you can't call `into_boxed_bytes` or `into_string` on `String`.
2016-09-05rustdoc: Filter more incorrect methods inherited through DerefPiotr Jawniak-0/+40
Old code filtered out only static methods. This code also excludes &mut self methods if there is no DerefMut implementation