Skip to content

Commit

Permalink
fix warn. prepare Scala 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
xuwei-k committed Feb 14, 2024
1 parent e17db3a commit b47782d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -294,5 +294,5 @@ private[optparse_applicative] trait Common {
runParserFully(getPolicy(i), i.parser, args)

def runParserFully[F[_]: MonadP, A](policy: ArgPolicy, p: Parser[A], args: Args): F[A] =
for ((Nil, r) <- runParser(policy, p, args)) yield r
for (case (Nil, r) <- runParser(policy, p, args)) yield r
}

0 comments on commit b47782d

Please sign in to comment.