Skip to content

Commit

Permalink
fix version specific issue
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgfraser committed Dec 1, 2023
1 parent 69b8ff4 commit 9b5f649
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/shared/src/main/scala/zio/prelude/ZValidation.scala
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ sealed trait ZValidation[+W, +E, +A] { self =>
final def zipPar[W1 >: W, E1 >: E, B](that: ZValidation[W1, E1, B])(implicit
zippable: Zippable[A, B]
): ZValidation[W1, E1, zippable.Out] =
zipWithPar(that)(zippable.zip)
zipWithPar(that)(zippable.zip(_, _))

/**
* Combines this `ZValidation` with the specified `ZValidation`, using the
Expand Down

0 comments on commit 9b5f649

Please sign in to comment.