Skip to content

Commit 9b0c088

Browse files
authored
Merge pull request #2261 from Atry/patch-7
Fix a syntax error in the sbt file example for kind-projector
2 parents 1d7f184 + d75ad96 commit 9b0c088

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_overviews/scala3-migration/plugin-kind-projector.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The following `sbt` configuration will set up the correct flags to cross-compile
2121
ThisBuild / scalacOptions ++= {
2222
CrossVersion.partialVersion(scalaVersion.value) match {
2323
case Some((3, _)) => Seq("-Ykind-projector:underscores")
24-
case Some((2, 13)) | Some((2, 12)) => Seq("-Xsource:3", "-P:kind-projector:underscore-placeholders"))
24+
case Some((2, 13)) | Some((2, 12)) => Seq("-Xsource:3", "-P:kind-projector:underscore-placeholders")
2525
}
2626
}
2727
```

0 commit comments

Comments
 (0)