From a5bb434d2a8cba2cd22718caac970cfbb23a2a4c Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Tue, 20 Apr 2010 08:41:11 -0400 Subject: [PATCH] Minor documentation addition --- sbt/src/main/scala/sbt/ProjectInfo.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sbt/src/main/scala/sbt/ProjectInfo.scala b/sbt/src/main/scala/sbt/ProjectInfo.scala index beb071478..f2c889dbf 100644 --- a/sbt/src/main/scala/sbt/ProjectInfo.scala +++ b/sbt/src/main/scala/sbt/ProjectInfo.scala @@ -36,7 +36,8 @@ final case class ProjectInfo(projectDirectory: File, dependencies: Iterable[Proj val builderPath = projectPath / ProjectInfo.MetadataDirectoryName /** The boot directory contains the jars needed for building the project, including Scala, sbt, processors and dependencies of these.*/ def bootPath = builderPath / Project.BootDirectoryName - /** The path to the build definition project. */ + /** The path to the build definition project. + * Currently, this is 'project/build'. */ def builderProjectPath = builderPath / Project.BuilderProjectDirectoryName def builderProjectOutputPath = builderProjectPath / Project.DefaultOutputDirectoryName /** The path to the plugin definition project. This declares the plugins to use for the build definition.*/