Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fthomas committed Dec 6, 2023
1 parent 807c78b commit bc21afe
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ final class MillAlg[F[_]](defaultResolver: Resolver)(implicit
buildRootDir: File
): F[Seq[Scope[List[Dependency]]]] =
for {
buildConent <- fileAlg.readFile(buildRootDir / "build.sc")
deps = buildConent.toList.map(content =>
buildContent <- fileAlg.readFile(buildRootDir / "build.sc")
deps = buildContent.toList.map(content =>
Scope(parser.parseMillPluginDeps(content, millVersion), List(defaultResolver))

Check warning on line 100 in modules/core/src/main/scala/org/scalasteward/core/buildtool/mill/MillAlg.scala

View check run for this annotation

Codecov / codecov/patch

modules/core/src/main/scala/org/scalasteward/core/buildtool/mill/MillAlg.scala#L100

Added line #L100 was not covered by tests
)
} yield deps
Expand Down

0 comments on commit bc21afe

Please sign in to comment.