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.08k stars 167 forks source link

Replace <code><pre> by <pre><code> in Javadoc #401

Closed lukaseder closed 1 year ago

lukaseder commented 1 year ago

Same as this jOOQ issue: https://github.com/jOOQ/jOOQ/issues/13703

We have instances of <code><pre> in our Javadoc, which is invalid HTML and also invalid according to doclint. Let's switch to <pre><code>

See also issue reported by @magicprinc: https://github.com/jOOQ/jOOL/issues/398

lukaseder commented 1 year ago

We'll turn on doclint just like in jOOQ:

<additionalparam>-Xdoclint:html</additionalparam>
<additionalOptions>-Xdoclint:html</additionalOptions>