Small scaladoc fixes

This commit is contained in:
Jacek Laskowski 2014-09-28 23:27:59 +02:00
parent bd34aa057a
commit 627956901b
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ import sbt.Tests.{ Output, Summary }
* Logs information about tests after they finish.
*
* 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
*/

View File

@ -120,7 +120,7 @@ sealed trait Project extends ProjectDefinition[ProjectReference] {
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.
*/
private[sbt] def prefixConfigs(cs: Configuration*): Project = copy(configurations = Defaults.overrideConfigs(configurations: _*)(cs))