Merge pull request #1754 from eikek/update/scala-library-2.13.9

Update scala-library to 2.13.9
This commit is contained in:
mergify[bot] 2022-09-24 11:04:39 +00:00 committed by GitHub
commit 561a98f3fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ val scalafixSettings = Seq(
val sharedSettings = Seq(
organization := "com.github.eikek",
scalaVersion := "2.13.8",
scalaVersion := "2.13.9",
organizationName := "Eike K. & Contributors",
licenses += ("AGPL-3.0-or-later", url(
"https://spdx.org/licenses/AGPL-3.0-or-later.html"

View File

@ -76,7 +76,7 @@ object StringUtil {
/** String content without the delimiter */
def undelimitedString(endP: P[Unit]): P[String] =
escapedToken.backtrack
.orElse((!endP).with1 ~ P.anyChar)
.orElse(((!endP).with1 ~ P.anyChar).void)
.rep
.string
.flatMap { str =>