Skip to content

Commit

Permalink
Fix typo on Scala version check
Browse files Browse the repository at this point in the history
Just fixes a small typo on the Scala 3.2.x warning.
  • Loading branch information
JD557 authored and ckipp01 committed Sep 2, 2022
1 parent 3e9030a commit 88d811e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/scoverage/ScoverageSbtPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ object ScoverageSbtPlugin extends AutoPlugin {
)
} else if (coverageEnabled.value && !isScala2(scalaVersion.value)) {
log.warn(
"coverage in Scala 3 needs at lease 3.2.x. Please update your Scala version and try again."
"coverage in Scala 3 needs at least 3.2.x. Please update your Scala version and try again."
)
Nil
} else {
Expand Down

0 comments on commit 88d811e

Please sign in to comment.