mirror of https://github.com/sbt/sbt.git
Small scaladoc fixes
This commit is contained in:
parent
bd34aa057a
commit
627956901b
|
|
@ -6,7 +6,7 @@ import sbt.Tests.{ Output, Summary }
|
||||||
* Logs information about tests after they finish.
|
* Logs information about tests after they finish.
|
||||||
*
|
*
|
||||||
* Log output can be customised by providing a specialised instance of this
|
* Log output can be customised by providing a specialised instance of this
|
||||||
* trait via the `testTestResultLogger` setting.
|
* trait via the `testResultLogger` setting.
|
||||||
*
|
*
|
||||||
* @since 0.13.5
|
* @since 0.13.5
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -120,7 +120,7 @@ sealed trait Project extends ProjectDefinition[ProjectReference] {
|
||||||
def overrideConfigs(cs: Configuration*): Project = copy(configurations = Defaults.overrideConfigs(cs: _*)(configurations))
|
def overrideConfigs(cs: Configuration*): Project = copy(configurations = Defaults.overrideConfigs(cs: _*)(configurations))
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds configuration at the *start* of the configuration list for this rpoject. Prevous configurations replace this prefix
|
* Adds configuration at the *start* of the configuration list for this project. Previous configurations replace this prefix
|
||||||
* list with the same name.
|
* list with the same name.
|
||||||
*/
|
*/
|
||||||
private[sbt] def prefixConfigs(cs: Configuration*): Project = copy(configurations = Defaults.overrideConfigs(configurations: _*)(cs))
|
private[sbt] def prefixConfigs(cs: Configuration*): Project = copy(configurations = Defaults.overrideConfigs(configurations: _*)(cs))
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue