Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jatcwang committed Oct 31, 2024
1 parent 641c1eb commit 2ba077d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ trait MkWritePlatform:
implicit def product[H, T <: Tuple](
implicit
H: Write[H] `OrElse` Derived[MkWrite[H]],
T: Write[H] `OrElse` Derived[MkWrite[H]]
T: Write[T] `OrElse` Derived[MkWrite[T]]
): Derived[MkWrite[H *: T]] = {
val headWrite = H.fold(identity, _.instance)
val tailWrite = T.fold(identity, _.instance)
Expand Down

0 comments on commit 2ba077d

Please sign in to comment.