summaryrefslogtreecommitdiff
path: root/docs/pages/1 - Intro to Mill.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/pages/1 - Intro to Mill.md')
-rw-r--r--docs/pages/1 - Intro to Mill.md12
1 files changed, 5 insertions, 7 deletions
diff --git a/docs/pages/1 - Intro to Mill.md b/docs/pages/1 - Intro to Mill.md
index 49ac64da..b6606211 100644
--- a/docs/pages/1 - Intro to Mill.md
+++ b/docs/pages/1 - Intro to Mill.md
@@ -561,7 +561,7 @@ compilation output:
### visualizePlan
```bash
-$ mill show visualizePlan moduledefs.allSourceFiles
+$ mill show visualizePlan core.launcher
[
".../out/visualizePlan/dest/out.txt",
".../out/visualizePlan/dest/out.dot",
@@ -571,17 +571,15 @@ $ mill show visualizePlan moduledefs.allSourceFiles
]
```
-`mill show visualizePlan` is similar except that it shows a graph of the entire
-build plan, including dependencies not directly resolved by the query. Targets
-directly resolved are shown with a solid border, and dependencies are shown with
-a dotted border.
+`mill show visualizePlan` is similar to `mill show visualize` except that it
+shows a graph of the entire build plan, including tasks not directly resolved
+by the query. Tasks directly resolved are shown with a solid border,
+and dependencies are shown with a dotted border.
The above command generates the following diagram:
![VisualizePlan.svg](VisualizePlan.svg)
-Currently, visualizePlan does not support graphs that contain external modules.
-
### clean
```bash