Fix doc warning

The scaladoc task was warning:
'Could not find any member to link for "LinterLevelLowPriority"'. Given
that LinterLevelLowPriority is a package private trait, it shouldn't be
mentioned by name.
This commit is contained in:
Ethan Atkins 2019-01-31 17:02:47 -08:00
parent df6f3bd888
commit 82cfbe83a7
1 changed files with 1 additions and 2 deletions

View File

@ -41,8 +41,7 @@ package sbt.dsl
* }}}
* To make this work, the instances are all defined as implicit case objects. Moreover, the
* the [[LinterLevel.Warn]] setting is made default by placing [[LinterLevel.Abort]] and
* [[LinterLevel.Ignore]] in the [[LinterLevelLowPriority]] trait that the [[LinterLevel]]
* companion object extends.
* [[LinterLevel.Ignore]] using the low priority trait pattern.
*/
sealed trait LinterLevel
object LinterLevel extends LinterLevelLowPriority {