summaryrefslogtreecommitdiff
path: root/readme.md
diff options
context:
space:
mode:
authorAlexis Hernandez <alexis22229@gmail.com>2018-03-13 10:16:43 -0600
committerLi Haoyi <haoyi.sg@gmail.com>2018-03-13 09:16:43 -0700
commitac7eedc2cc858a778a63a7e03ccd03bac2676871 (patch)
treef5e61bd05cf5196f5c6947808bb3addb5553ad43 /readme.md
parent86ac46588beb2c6a29996ce8499165acd3bb357c (diff)
downloadmill-ac7eedc2cc858a778a63a7e03ccd03bac2676871.tar.gz
mill-ac7eedc2cc858a778a63a7e03ccd03bac2676871.tar.bz2
mill-ac7eedc2cc858a778a63a7e03ccd03bac2676871.zip
Update readme.md to fix a typo (#223)
* Update readme.md to fix a typo * Update readme.md
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/readme.md b/readme.md
index 4a60a1c5..9c124fbd 100644
--- a/readme.md
+++ b/readme.md
@@ -107,7 +107,7 @@ mill bridges[2.12.4].publish --credentials foo --gpgPassphrase bar
mill all main.test scalalib.test
```
-**Note**: don't forget to put `--all` flag when you run multiple commands, otherwise the only first command will be run, and subsequent commands will be passed as arguments to the first one.
+**Note**: don't forget to put `all` flag when you run multiple commands, otherwise the only first command will be run, and subsequent commands will be passed as arguments to the first one.
* Run multiple commands with arguments:
```bash
@@ -165,7 +165,7 @@ mill all __.test
mill all bridges[_].compile
```
-**Note**: When you run multiple targets with `--all` flag, they are not
+**Note**: When you run multiple targets with `all` command, they are not
guaranteed to run in that exact order. Mill will build task evaluation graph and
run targets in correct order.