From 2003267b875a13bba5d2f0ed10ce6d401bf1fe12 Mon Sep 17 00:00:00 2001 From: Dongxu Wang Date: Tue, 2 Apr 2024 14:49:17 +0800 Subject: [PATCH] Update example build.sc missing quote --- example/basic/3-multi-module/build.sc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/basic/3-multi-module/build.sc b/example/basic/3-multi-module/build.sc index f8e1c39c13b..4be89ee383c 100644 --- a/example/basic/3-multi-module/build.sc +++ b/example/basic/3-multi-module/build.sc @@ -17,7 +17,7 @@ object bar extends MyModule { // We don't mark either module as top-level using `extends BuildFileModule`, so // running tasks needs to use the module name as the prefix e.g. `foo.run` or // `bar.run`. You can define multiple modules the same way you define a single -// module, using def moduleDeps` to define the relationship between them. +// module, using `def moduleDeps` to define the relationship between them. // // Note that we split out the `scalaVersion` configuration common to both // modules into a separate `trait MyModule`. This lets us avoid the need to @@ -97,4 +97,4 @@ Bar.value:

world

// `+mill {foo,bar}.__.testCached+` :: Runs `testCached` for all sub-modules of `foo` and `bar` // `+mill __.compile + foo.__.test+` :: Runs all `compile` targets and all tests under `foo`. // -// \ No newline at end of file +//