summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorTobias Roeser <le.petit.fou@web.de>2019-02-23 23:21:22 +0100
committerTobias Roeser <le.petit.fou@web.de>2019-02-23 23:21:46 +0100
commit684f2b7c33415d0e187ee27dbd8ff4b2bd35982d (patch)
tree7c661fd933e0fe293677a7e3b1c7326c6f8020bb /main
parent032b763a78d070c04e3fef0a5b6b4bd3173a2c69 (diff)
downloadmill-684f2b7c33415d0e187ee27dbd8ff4b2bd35982d.tar.gz
mill-684f2b7c33415d0e187ee27dbd8ff4b2bd35982d.tar.bz2
mill-684f2b7c33415d0e187ee27dbd8ff4b2bd35982d.zip
Fixed incorrect comment
Diffstat (limited to 'main')
-rw-r--r--main/api/src/mill/api/Ctx.scala5
1 files changed, 4 insertions, 1 deletions
diff --git a/main/api/src/mill/api/Ctx.scala b/main/api/src/mill/api/Ctx.scala
index 4ccf5a7d..69d01f7e 100644
--- a/main/api/src/mill/api/Ctx.scala
+++ b/main/api/src/mill/api/Ctx.scala
@@ -29,7 +29,10 @@ object Ctx {
implicit def logToCtx(l: Logger): Log = new Log { def log = l }
}
- /** Access to the projects home path. */
+ /**
+ * Access to some internal storage dir used by underlying ammonite.
+ * You should not need this in a buildscript.
+ */
trait Home {
def home: os.Path
}