about summary refs log tree commit diff
path: root/src/test/rustdoc/issue-35169.rs
AgeCommit message (Collapse)AuthorLines
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