diff --git a/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/internal/build/BuildFile.kt b/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/internal/build/BuildFile.kt index d7f8e831..1665e6d4 100644 --- a/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/internal/build/BuildFile.kt +++ b/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/internal/build/BuildFile.kt @@ -25,7 +25,8 @@ class BuildFile(val path: Path, val name: String, val realPath: Path = path) { } /** - * @return the absolute directory of this build file, assuming the build file is in $project/kobalt/src/Build.kt + * @return the absolute directory of this projects' location, assuming the build file is in + * $project/kobalt/src/Build.kt. */ val absoluteDir = path.parent.parent.parent.toFile() }