summaryrefslogtreecommitdiff
path: root/test/scaladoc/run/SI-9620.scala
Commit message (Collapse)AuthorAgeFilesLines
* Add doc annotation `@shortDescription` to enable explicit synopsisFelix Mulder2016-02-221-1/+0
| | | | | | | | Entities with this annotation will be able to control what is shown in the method summary on entity pages as well as the hover text on search results. Review: @VladUreche
* SI-9620: add doc annotation to hide specific conversionsFelix Mulder2016-02-091-0/+43
This commit will introduce the doc annotation `@hideImplicitConversion`. By specifying which conversions to hide, the user can "toggle" which conversions are kept in the parsed entity. This implementation is a better workaround than hardcoding which ones to ignore when running scaladoc. Review: @VladUreche