I noticed an issue with the javadoc of java.lang.annotation.ElementType. It can be narrowed down to an @thing behind followed by another @thingy on the same line, this generates wrong list elements.
/**
* Some javadoc and then ...
* @jls 9.6.4.1 @Target
*/
public void foo(){}
The @Target in ElementType should be rendered as a link to the jls spec, in this case : https://docs.oracle.com/javase/specs/jls/se25/html/jls-9.html#jls-9.6.4.1
Not sure what should happen if @jls 9.6.4.1 @Target is present on a non JDK class.
I noticed an issue with the javadoc of java.lang.annotation.ElementType. It can be narrowed down to an
@thingbehind followed by another@thingyon the same line, this generates wrong list elements.The
@Targetin ElementType should be rendered as a link to the jls spec, in this case : https://docs.oracle.com/javase/specs/jls/se25/html/jls-9.html#jls-9.6.4.1Not sure what should happen if
@jls 9.6.4.1 @Targetis present on a non JDK class.