summaryrefslogtreecommitdiff
path: root/docs/pages/2 - Configuring Mill.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/pages/2 - Configuring Mill.md')
-rw-r--r--docs/pages/2 - Configuring Mill.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/pages/2 - Configuring Mill.md b/docs/pages/2 - Configuring Mill.md
index 8fee9354..bfe7a8db 100644
--- a/docs/pages/2 - Configuring Mill.md
+++ b/docs/pages/2 - Configuring Mill.md
@@ -264,7 +264,7 @@ object foo extends ScalaModule {
super.compile()
}
def run(args: String*) = T.command{
- println("Running... + args.mkString(" "))
+ println("Running..." + args.mkString(" "))
super.run(args:_*)
}
}