@@ -15,7 +15,7 @@ lazy val parserCombinators = crossProject(JVMPlatform, JSPlatform, NativePlatfor
15
15
libraryDependencies += " com.novocode" % " junit-interface" % " 0.11" % Test ,
16
16
// so we can `@nowarn` in test code, but only in test code, so the dependency
17
17
// doesn't leak downstream
18
- libraryDependencies += " org.scala-lang.modules" %% " scala-collection-compat" % " 2.4.1 " % Test ,
18
+ libraryDependencies += " org.scala-lang.modules" %% " scala-collection-compat" % " 2.4.2 " % Test ,
19
19
20
20
apiMappings ++= scalaInstance.value.libraryJars.collect {
21
21
case file if file.getName.startsWith(" scala-library" ) && file.getName.endsWith(" .jar" ) =>
@@ -43,7 +43,7 @@ lazy val parserCombinators = crossProject(JVMPlatform, JSPlatform, NativePlatfor
43
43
}),
44
44
Compile / doc / scalacOptions ++= {
45
45
if (isDotty.value)
46
- Seq () // TODO see what flags might be desirable to pass to Scala3doc
46
+ Seq () // TODO see what flags might be desirable to pass to Scala 3's Scaladoc
47
47
else
48
48
Seq (
49
49
" -diagrams" ,
0 commit comments