Skip to content

Commit d9c295f

Browse files
authored
fix instructions in readme to be Dotty-friendly (#100)
1 parent a596352 commit d9c295f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ cross-built project, the dependency should take this form:
4242
```scala
4343
libraryDependencies ++= {
4444
CrossVersion.partialVersion(scalaVersion.value) match {
45-
case Some((2, major)) if major >= 13 =>
46-
Seq("org.scala-lang.modules" %% "scala-parallel-collections" % "0.2.0")
47-
case _ =>
45+
case Some((2, major)) if major <= 12 =>
4846
Seq()
47+
case _ =>
48+
Seq("org.scala-lang.modules" %% "scala-parallel-collections" % "0.2.0")
4949
}
5050
}
5151
```

0 commit comments

Comments
 (0)