Skip to content

Commit 8cef774

Browse files
committed
Renamed show for Either3.
1 parent 5466472 commit 8cef774

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/fj/Show.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ public static <A, B> Show<Either<A, B>> eitherShow(final Show<A> sa, final Show<
256256
fromString("Right(").append(sb.f.f(e.right().value())).append(single(')')));
257257
}
258258

259-
public static <A, B, C> Show<Either3<A, B, C>> eitherShow(final Show<A> sa, final Show<B> sb, final Show<C> sc) {
259+
public static <A, B, C> Show<Either3<A, B, C>> either3Show(final Show<A> sa, final Show<B> sb, final Show<C> sc) {
260260
return show(e ->
261261
e.either(
262262
a -> fromString("Left(").append(sa.f.f(a)).append(single(')')),

0 commit comments

Comments
 (0)