You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ScalaDoc comments on Newtypes don't appear in the generated output. The HTML lists it as type as with a normal type alias, but does not apply the documentation.
Example:
/** Example type doc
*/
type X1 = Int
/** Example newtype doc won't appear
*/
@newtype case class X2(int: Int)
Output:
The text was updated successfully, but these errors were encountered:
ScalaDoc comments on Newtypes don't appear in the generated output. The HTML lists it as
type
as with a normal type alias, but does not apply the documentation.Example:
Output:
The text was updated successfully, but these errors were encountered: