Skip to content

Commit ed1fae1

Browse files
authored
Typo
1 parent 1a97fc5 commit ed1fae1

File tree

1 file changed

+1
-1
lines changed
  • modules/core/src/main/scala/org/scalasteward/core/buildtool/sbt

1 file changed

+1
-1
lines changed

modules/core/src/main/scala/org/scalasteward/core/buildtool/sbt/SbtAlg.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ final class SbtAlg[F[_]](config: Config)(implicit
5454
private def metaBuildsCount(buildRootDir: File): F[Int] =
5555
fs2.Stream
5656
.iterate(buildRootDir / project)(_ / project)
57-
.take(5L) // Use an upper bound for the meta-builds count to prevent DOS attacks.
57+
.take(5L) // Use an upper bound for the meta-builds count to prevent DoS attacks.
5858
.evalMap(fileAlg.isDirectory)
5959
.takeWhile(identity)
6060
.compile

0 commit comments

Comments
 (0)