summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlf Richter <h2000@users.noreply.github.com>2018-05-11 22:10:00 +0200
committerLi Haoyi <haoyi.sg@gmail.com>2018-05-11 13:10:00 -0700
commitcec13bea82e00b4e3cb62d4179aa7bb565e3e4ce (patch)
treeec2e4f95f8e4938fa456d9c11f1d8e167e53dc2b /docs
parente80d2070319382175da0f37703b1bb82e3cb8f3b (diff)
downloadmill-cec13bea82e00b4e3cb62d4179aa7bb565e3e4ce.tar.gz
mill-cec13bea82e00b4e3cb62d4179aa7bb565e3e4ce.tar.bz2
mill-cec13bea82e00b4e3cb62d4179aa7bb565e3e4ce.zip
Update 4 - Tasks.md (#317)
Added s to T.source and fixed small typo
Diffstat (limited to 'docs')
-rw-r--r--docs/pages/4 - Tasks.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/pages/4 - Tasks.md b/docs/pages/4 - Tasks.md
index 71974177..edae6953 100644
--- a/docs/pages/4 - Tasks.md
+++ b/docs/pages/4 - Tasks.md
@@ -32,12 +32,12 @@ def run(mainClsName: String) = T.command{
}
```
-Here, we have two `T.source`s, `sourceRoot` and `resourceRoot`, which act as the
+Here, we have two `T.sources`, `sourceRoot` and `resourceRoot`, which act as the
roots of our task graph. `allSources` depends on `sourceRoot` by calling
`sourceRoot()` to extract it's value, `classFiles` depends on `allSources` the
same way, and `jar` depends on both `classFiles` and `resourceRoot`.
-Filesystem o1perations in Mill are done using the
+Filesystem operations in Mill are done using the
[Ammonite-Ops](http://ammonite.io/#Ammonite-Ops) library.
The above build defines the following task graph: