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.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/pages/1 - Intro to Mill.md b/docs/pages/1 - Intro to Mill.md
index 9290aae0..8c78ee98 100644
--- a/docs/pages/1 - Intro to Mill.md
+++ b/docs/pages/1 - Intro to Mill.md
@@ -178,8 +178,8 @@ respective `out/foo/bar/` folder.
```scala
// build.sc
import mill._, mill.scalalib._
-object foo extends ScalaModule
-object bar extends ScalaModule {
+object foo extends JavaModule
+object bar extends JavaModule {
def moduleDeps = Seq(foo)
}
```