Skip to content

Commit 7708398

Browse files
committed
Fix - scalafmt
1 parent 6175b56 commit 7708398

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/tasty-lib/src/main/scala/scala/build/tastylib/TastyVersions.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ object TastyVersions {
1616
scalaVersion: String,
1717
scalaCliVersion: String
1818
): Either[String, Boolean] =
19-
if (!scalaVersion.startsWith("3.") && scalaVersion != "3" ) Right(false)
19+
if (!scalaVersion.startsWith("3.") && scalaVersion != "3") Right(false)
2020
else
2121
scalaVersion.split('.')(1).toInt match {
2222
case scalaMinor if scalaMinor > LatestSupportedScala.MinorVersion =>

0 commit comments

Comments
 (0)