jOOQ / jOOL

jOOλ - The Missing Parts in Java 8 jOOλ improves the JDK libraries in areas where the Expert Group's focus was elsewhere. It adds tuple support, function support, and a lot of additional functionality around sequential Streams. The JDK 8's main efforts (default methods, lambdas, and the Stream API) were focused around maintaining backwards compatibility and implementing a functional API for parallelism.
http://www.jooq.org/products
Apache License 2.0
2.09k stars 168 forks source link

Javadoc Typo in Seq.seq(LongStream) and Seq.seq(DoubleStream) #340

Closed seanlee0210 closed 6 years ago

seanlee0210 commented 6 years ago

Expected behavior and actual behavior:

Expected behavior : Describe Integer, Long and Double method accurately for each one in API document for "static Seq" and "static Seq"

Actual behavior : Both "static Seq" and "static Seq" are described as "Wrap a IntStream into a Seq." which may be caused by simply copy and paste.

Steps to reproduce the problem:

https://www.jooq.org/products/jOO%CE%BB/javadoc/0.9.14/org/jooq/lambda/Seq.html

static Seq | seq​(java.util.stream.DoubleStream stream) | Wrap a IntStream into a Seq.

seq​(java.util.stream.LongStream stream) | Wrap a IntStream into a Seq.

Versions:

lukaseder commented 6 years ago

Thanks a lot for your report!

seanlee0210 commented 6 years ago

Thanks a lot for your report!

You're welcome~