Hi, Semyon.
On 18/12/2017 17:52, Semyon Sadetsky wrote:
Please, surround with <blockquote> the code sample.

Why <blockquote> should be used since an example is not a "quote" but contains code? I guess <pre>{@code} should be enough.


All references like

* ...if {@code next()} is called before...

better to replace with

* ...if {@link #next()} is called before...

It always confused me when to use @link instead of @code. Currently I use @code everywhere except the place where I write something like
"Please see {@link java.beans.XMLEncoder}."
or something like
"Refer to {@link #setValueContainsLiteralCharacters} for details"

In other words @link is necessary when the description of referred object has some additional information. Otherwise we had to use @link instead of @code everywhere.


--Semyon

On 12/18/2017 03:28 PM, Sergey Bylokhov wrote:
Hello.
Please review the fix for jdk11.

Bug: https://bugs.openjdk.java.net/browse/JDK-6684386
Webrev can be found at: http://cr.openjdk.java.net/~serb/6684386/webrev.00 Specdiff: http://cr.openjdk.java.net/~serb/6684386/specdiff.00/javax/swing/text/ElementIterator.html

Description of the javadoc changes:
 - <pre> tag is added for the code in the example
 - the typo in the code was fixed(it.next(")
 - <ul> tag is added for the list
 - The rest of the file was updated to use a styles used in the previous javadoc related fixes.




--
Best regards, Sergey.

Reply via email to