I cannot add a package description in ScalaDoc with Scala 3
/** package description */
package foo {
/** some scaladoc comment */
def method():A = ???
}
Then I generate the doc with sbt (1.5.3)
sbt> doc
I don't get the description of the package itself in the index.html
file, but only the description of the method
inside the package.
package object
is becoming deprecated – Moyers