summaryrefslogtreecommitdiff
path: root/docs/pages/6 - Extending Mill.md
diff options
context:
space:
mode:
authorGabriele Petronella <gabriele@buildo.io>2018-03-18 01:36:28 +0900
committerLi Haoyi <haoyi.sg@gmail.com>2018-03-17 09:36:28 -0700
commit6aba4d619d11e3f7f2c5128aa34162df655af37b (patch)
treefee45a65ea599b84bdbf86c8143b362d95dbe4bf /docs/pages/6 - Extending Mill.md
parentbc608cdf19720fe2111bb055bd57eedba24dc7ae (diff)
downloadmill-6aba4d619d11e3f7f2c5128aa34162df655af37b.tar.gz
mill-6aba4d619d11e3f7f2c5128aa34162df655af37b.tar.bz2
mill-6aba4d619d11e3f7f2c5128aa34162df655af37b.zip
Rename 'describe' to 'inspect' in the docs, following 6336860 (#235)
Diffstat (limited to 'docs/pages/6 - Extending Mill.md')
-rw-r--r--docs/pages/6 - Extending Mill.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/pages/6 - Extending Mill.md b/docs/pages/6 - Extending Mill.md
index a6c096a6..135a63ed 100644
--- a/docs/pages/6 - Extending Mill.md
+++ b/docs/pages/6 - Extending Mill.md
@@ -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.