about summary refs log tree commit diff
path: root/src/test/pretty/top-level-doc-comments.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-8/+0
2020-01-24Remove unused ignore-license directivesTomasz Miąsko-5/+0
The tidy check was removed in rust-lang/rust#53617
2018-12-25Remove licensesMark Rousskov-7/+0
2016-03-07syntax: Always pretty print a newline after doc commentsErick Tryzelaar-0/+20
Before this patch, code that had a doc comment as the first line, as in: ```rust /// Foo struct Foo; ``` Was pretty printed into: ```rust ///Foostruct Foo; ``` This makes sure that that there is always a trailing newline after a doc comment. Closes #31722