summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtem Pyanykh <artem.pyanykh@gmail.com>2018-04-11 11:02:36 +0200
committerNikolay Tatarinov <5min4eq.unity@gmail.com>2018-04-11 12:02:36 +0300
commit3539ce8af1c5ad42dac9cb728face28a44ec7f40 (patch)
tree8f8868a7f5b96ad20ad31fea40f60cd1610a2541
parentb08b3b870d81b7ba8209f485058091a9add21aee (diff)
downloadmill-3539ce8af1c5ad42dac9cb728face28a44ec7f40.tar.gz
mill-3539ce8af1c5ad42dac9cb728face28a44ec7f40.tar.bz2
mill-3539ce8af1c5ad42dac9cb728face28a44ec7f40.zip
Fix docs re: GenIdea/idea command (#296)
-rw-r--r--docs/pages/1 - Intro to Mill.md2
-rw-r--r--docs/pages/5 - Modules.md2
-rw-r--r--readme.md2
3 files changed, 3 insertions, 3 deletions
diff --git a/docs/pages/1 - Intro to Mill.md b/docs/pages/1 - Intro to Mill.md
index b31c32e7..9290aae0 100644
--- a/docs/pages/1 - Intro to Mill.md
+++ b/docs/pages/1 - Intro to Mill.md
@@ -458,7 +458,7 @@ JSON it outputs is structured and easily parsed & manipulated.
## IntelliJ Support
-Mill supports IntelliJ by default. Use `mill mill.scalalib.GenIdeaModule/idea` to
+Mill supports IntelliJ by default. Use `mill mill.scalalib.GenIdea/idea` to
generate an IntelliJ project config for your build.
This also configures IntelliJ to allow easy navigate & code-completion within
diff --git a/docs/pages/5 - Modules.md b/docs/pages/5 - Modules.md
index c8d7378c..9b35af5f 100644
--- a/docs/pages/5 - Modules.md
+++ b/docs/pages/5 - Modules.md
@@ -154,5 +154,5 @@ mill foo.Bar/qux
that is shared by the entire build: for example,
`mill.scalalib.ScalaWorkerApi/scalaWorker` provides a shared Scala compilation
service & cache that is shared between all `ScalaModule`s, and
-`mill.scalalib.GenIdeaModule/idea` lets you generate IntelliJ projects without
+`mill.scalalib.GenIdea/idea` lets you generate IntelliJ projects without
needing to define your own `T.command` in your `build.sc` file \ No newline at end of file
diff --git a/readme.md b/readme.md
index 139a4ca4..b2ef81a0 100644
--- a/readme.md
+++ b/readme.md
@@ -86,7 +86,7 @@ mill dev.run docs/example-1 foo.run
Lastly, you can generate IntelliJ Scala project files using Mill via
```bash
-./out/dev/assembly/dest/mill mill.scalalib.GenIdeaModule/idea
+./out/dev/assembly/dest/mill mill.scalalib.GenIdea/idea
```
Allowing you to import a Mill project into Intellij without using SBT