Skip to content

Commit

Permalink
Update example build.sc missing quote (com-lihaoyi#3106)
Browse files Browse the repository at this point in the history
  • Loading branch information
dongxuwang authored Apr 2, 2024
1 parent 13a31e5 commit dfcb073
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example/basic/3-multi-module/build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -97,4 +97,4 @@ Bar.value: <p>world</p>
// `+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`.
//
//
//

0 comments on commit dfcb073

Please sign in to comment.