Skip to content

Commit d9068b3

Browse files
committed
Remove notes about -doc-title and -doc-version not being used
Confirmed these options are used by editing build-ant-macros.xml and viewing the output, <scaladoc docRootContent="${src.dir}/@{project}/${@{project}.docroot}" destdir="${build-docs.dir}/@{project}" - doctitle="${@{project}.description}" + doctitle="${@{project}.description} - test-title" docfooter="epfl" - docversion="${version.number}" + docversion="${version.number} - test-version"
1 parent 72b855f commit d9068b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/scaladoc/scala/tools/nsc/doc/Settings.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Settings(error: String => Unit, val printMsg: String => Unit = println(_))
2525
)
2626

2727
/** A setting that defines the overall title of the documentation, typically the name of the library being
28-
* documented. ''Note:'' This setting is currently not used. */
28+
* documented. */
2929
val doctitle = StringSetting (
3030
"-doc-title",
3131
"title",
@@ -34,7 +34,7 @@ class Settings(error: String => Unit, val printMsg: String => Unit = println(_))
3434
)
3535

3636
/** A setting that defines the overall version number of the documentation, typically the version of the library being
37-
* documented. ''Note:'' This setting is currently not used. */
37+
* documented. */
3838
val docversion = StringSetting (
3939
"-doc-version",
4040
"version",

0 commit comments

Comments
 (0)