about summary refs log tree commit diff
path: root/src/etc/sugarise-doc-comments.py
AgeCommit message (Collapse)AuthorLines
2018-03-05Remove seemingly unused sugarise-doc-comments Python script.Corey Farwell-93/+0
This Python script converts documentation comments from the `#[doc = "..."]` attribute to the `///` syntax. It was added six years ago, presumably to help with the transition when `///` was implemented and hasn't really been touched since. I don't think there's much value in keeping it around at this point.
2017-11-16fix some python3 incompatibilitiesCollin Anderson-2/+2
2015-01-27Fix PEP8 in sugarise-doc-commentsRicho Healey-2/+4
2014-02-05etc: add missing license boilerplatesAdrien Tétar-1/+10
2013-05-03add gitattributes and fix whitespace issuesDaniel Micay-1/+0
2013-01-17Add a license check to tidy. #4018Brian Anderson-0/+1
2013-01-03fix sugarise-doc-comments.py shebangDaniel Micay-1/+1
2012-06-30make script executableGareth Daniel Smith-0/+0
2012-06-30initial draft of fix for issue #2498:Gareth Daniel Smith-0/+82
1. make /// ... and //! ... and /** ... */ and /*! ... */ into sugar for #[doc = ...] attributes. 2. add a script in etc/ to help converting doc-attributes to doc-comments 3. add some functions to core::str to help with (1)