summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/pages/4 - Tasks.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/pages/4 - Tasks.md b/docs/pages/4 - Tasks.md
index 78a6e58e..ea6fe36d 100644
--- a/docs/pages/4 - Tasks.md
+++ b/docs/pages/4 - Tasks.md
@@ -21,7 +21,7 @@ def allSources = T { sourceRoot().flatMap(p => os.walk(p.path)).map(PathRef(_))
def classFiles = T {
os.makeDir.all(T.ctx().dest)
- %("javac", sources().map(_.path.toString()), "-d", T.ctx().dest)(wd = T.ctx().dest)
+ %("javac", allSources().map(_.path.toString()), "-d", T.ctx().dest)(wd = T.ctx().dest)
PathRef(T.ctx().dest)
}