Merge pull request #1627 from jaceklaskowski/scaladoc-fixes

Small scaladoc fixes
This commit is contained in:
Josh Suereth 2014-09-29 07:45:12 -04:00
commit 2c87a643a4
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))