Fix scaladoc for DslAggregate

This commit is contained in:
Dale Wijnand 2018-09-28 10:41:08 +01:00
parent 1fc0cd0314
commit b174a13b9c
No known key found for this signature in database
GPG Key ID: 4F256E3D151DF5EF
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ object DslEntry {
override val toFunction: Project => Project = _.configs(cs: _*)
}
/** this represents an `aggregate()` in the sbt DSL */
/** this represents an `aggregateProjects()` in the sbt DSL */
case class DslAggregate(refs: Seq[ProjectReference]) extends ProjectManipulation {
override val toFunction: Project => Project = _.aggregate(refs: _*)
}