Merge pull request #4390 from dwijnand/fix-DslAggregate-doc

Fix scaladoc for DslAggregate
This commit is contained in:
eugene yokota 2018-09-28 10:40:21 -04:00 committed by GitHub
commit 18a0141fc0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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: _*)
}