Skip to content

Commit

Permalink
Merge branch 'staging/5.0' of github.com:j-mie6/parsley into staging/5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mie6 committed May 13, 2024
2 parents f3d2e49 + 3e9e2be commit 72fee1e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import _root_.parsley.build.mima
val projectName = "parsley"
val Scala213 = "2.13.12"
val Scala212 = "2.12.18"
val Scala3 = "3.3.1"
val Scala3 = "3.3.3"
val Java8 = JavaSpec.temurin("8")
val JavaLTS = JavaSpec.temurin("11")
val JavaLatest = JavaSpec.temurin("17")
Expand Down
4 changes: 3 additions & 1 deletion parsley/shared/src/main/scala/parsley/quick.scala
Original file line number Diff line number Diff line change
Expand Up @@ -160,4 +160,6 @@ package parsley
* @define paramAp a parser that returns a function to apply to the results of the parsers with arity
* @define returnAp a parser that parses all of the given parsers in order, and then combines their results with `f`.
*/
object quick extends ParsleyImpl with combinator with character with position with lift with ap
object quick extends ParsleyImpl with combinator with character with position with lift with ap {
type Parsley[+A] = parsley.Parsley[A]
}

0 comments on commit 72fee1e

Please sign in to comment.