Skip to content

Commit def75a1

Browse files
committed
Revert "fix javadoc for listShow"
This reverts commit 055c558.
1 parent 055c558 commit def75a1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -300,10 +300,10 @@ public Stream<Character> f(final Validation<A, B> v) {
300300
}
301301

302302
/**
303-
* A show instance for the {@link List} type.
303+
* A show instance for the {@link Stream} type.
304304
*
305-
* @param sa Show for the elements of the List.
306-
* @return A show instance for the {@link List} type.
305+
* @param sa Show for the elements of the Stream.
306+
* @return A show instance for the {@link Stream} type.
307307
*/
308308
public static <A> Show<List<A>> listShow(final Show<A> sa) {
309309
return new Show<List<A>>(new F<List<A>, Stream<Character>>() {

0 commit comments

Comments
 (0)