Skip to content

Commit 055c558

Browse files
committed
fix javadoc for listShow
1 parent 93a500b commit 055c558

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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 Stream} type.
303+
* A show instance for the {@link List} type.
304304
*
305-
* @param sa Show for the elements of the Stream.
306-
* @return A show instance for the {@link Stream} type.
305+
* @param sa Show for the elements of the List.
306+
* @return A show instance for the {@link List} 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)