summaryrefslogtreecommitdiff
path: root/docs/pages/6 - Extending Mill.md
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2018-03-18 10:35:57 -0700
committerLi Haoyi <haoyi.sg@gmail.com>2018-03-18 10:35:57 -0700
commit3715c7bfb88de8daa86cd663d22057ec776cedcc (patch)
tree0a85083bcdb27867110e33c05c15ac13ae2865a9 /docs/pages/6 - Extending Mill.md
parent350a3115afca590bee6311dbed4a657fe9cca375 (diff)
parent0063444b422e317b9ee68c789f9b3224dcf28825 (diff)
downloadmill-3715c7bfb88de8daa86cd663d22057ec776cedcc.tar.gz
mill-3715c7bfb88de8daa86cd663d22057ec776cedcc.tar.bz2
mill-3715c7bfb88de8daa86cd663d22057ec776cedcc.zip
Merge branch 'master' of github.com:lihaoyi/mill
Diffstat (limited to 'docs/pages/6 - Extending Mill.md')
-rw-r--r--docs/pages/6 - Extending Mill.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/pages/6 - Extending Mill.md b/docs/pages/6 - Extending Mill.md
index a6c096a6..75b7643a 100644
--- a/docs/pages/6 - Extending Mill.md
+++ b/docs/pages/6 - Extending Mill.md
@@ -20,7 +20,7 @@ you're done.
For subprocess/filesystem operations, you can use the
[Ammonite-Ops](http://ammonite.io/#Ammonite-Ops) library that comes bundled with
-Mill, or even plain `java.nio`/`java.lang.Process. Each target gets it's own
+Mill, or even plain `java.nio`/`java.lang.Process`. Each target gets it's own
[T.ctx().dest](http://www.lihaoyi.com/mill/page/tasks#millutilctxdestctx) folder
that you can use to place files without worrying about colliding with other
targets.
@@ -177,7 +177,7 @@ def idea(ev: Evaluator[Any]) = T.command{
```
Many built-in tools are implemented as custom evaluator commands:
-[all](intro.html#all), [describe](intro.html#describe),
+[all](intro.html#all), [inspect](intro.html#inspect),
[resolve](intro.html#resolve), [show](intro.html#show). If you want a way to run Mill
commands and programmatically manipulate the tasks and outputs, you do so with
your own evaluator command.