From d75ad96f1f7a434c6a0c42b621a4f0f3458f48ea Mon Sep 17 00:00:00 2001 From: "Yang, Bo" Date: Sun, 5 Dec 2021 21:59:17 -0800 Subject: [PATCH] Fix the syntax error in the sbt file example --- _overviews/scala3-migration/plugin-kind-projector.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_overviews/scala3-migration/plugin-kind-projector.md b/_overviews/scala3-migration/plugin-kind-projector.md index 7055babdd7..fc61b05cda 100644 --- a/_overviews/scala3-migration/plugin-kind-projector.md +++ b/_overviews/scala3-migration/plugin-kind-projector.md @@ -21,7 +21,7 @@ The following `sbt` configuration will set up the correct flags to cross-compile ThisBuild / scalacOptions ++= { CrossVersion.partialVersion(scalaVersion.value) match { case Some((3, _)) => Seq("-Ykind-projector:underscores") - case Some((2, 13)) | Some((2, 12)) => Seq("-Xsource:3", "-P:kind-projector:underscore-placeholders")) + case Some((2, 13)) | Some((2, 12)) => Seq("-Xsource:3", "-P:kind-projector:underscore-placeholders") } } ```