Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update example build.sc missing quote #3106

Merged
merged 1 commit into from
Apr 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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`.
//
//
//
Loading