Skip to content

Commit bc21afe

Browse files
committed
Fix typo
1 parent 807c78b commit bc21afe

File tree

1 file changed

+2
-2
lines changed
  • modules/core/src/main/scala/org/scalasteward/core/buildtool/mill

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ final class MillAlg[F[_]](defaultResolver: Resolver)(implicit
9595
buildRootDir: File
9696
): F[Seq[Scope[List[Dependency]]]] =
9797
for {
98-
buildConent <- fileAlg.readFile(buildRootDir / "build.sc")
99-
deps = buildConent.toList.map(content =>
98+
buildContent <- fileAlg.readFile(buildRootDir / "build.sc")
99+
deps = buildContent.toList.map(content =>
100100
Scope(parser.parseMillPluginDeps(content, millVersion), List(defaultResolver))
101101
)
102102
} yield deps

0 commit comments

Comments
 (0)