Comment: Fix malformed link tag in Javadoc
Fixing the link tag also results in reformatting of other parts of the javadoc block by google-java-format. Change-Id: Ia80d8dafed23f314a1a9441a92c62669d830ace9
This commit is contained in:
@@ -129,16 +129,18 @@ public class Comment {
|
|||||||
*
|
*
|
||||||
* <p>The pair (startLine, startChar) defines the first character in the range. The pair (endLine,
|
* <p>The pair (startLine, startChar) defines the first character in the range. The pair (endLine,
|
||||||
* endChar) defines the first character AFTER the range (i.e. it doesn't belong the range).
|
* endChar) defines the first character AFTER the range (i.e. it doesn't belong the range).
|
||||||
* (endLine, endChar) must be a valid character inside text, except EOF case.</p>
|
* (endLine, endChar) must be a valid character inside text, except EOF case.
|
||||||
* <p>Special cases:</p>
|
*
|
||||||
|
* <p>Special cases:
|
||||||
|
*
|
||||||
* <ul>
|
* <ul>
|
||||||
* <li>Zero length range: (startLine, startChar) = (endLine, endChar). Range defines insert
|
* <li>Zero length range: (startLine, startChar) = (endLine, endChar). Range defines insert
|
||||||
* position right before the (startLine, startChar) character (for {@link FixReplacement)
|
* position right before the (startLine, startChar) character (for {@link FixReplacement})
|
||||||
* <li>EOF case - range includes the last character in the file:
|
* <li>EOF case - range includes the last character in the file:
|
||||||
* <ul>
|
* <ul>
|
||||||
* <li>if a file ends with EOL mark, then (endLine, endChar) = (num_of_lines + 1, 0)
|
* <li>if a file ends with EOL mark, then (endLine, endChar) = (num_of_lines + 1, 0)
|
||||||
* <li>if a file doesn't end with EOL mark, then
|
* <li>if a file doesn't end with EOL mark, then (endLine, endChar) = (num_of_lines,
|
||||||
* (endLine, endChar) = (num_of_lines, num_of_chars_in_last_line)
|
* num_of_chars_in_last_line)
|
||||||
* </ul>
|
* </ul>
|
||||||
* </ul>
|
* </ul>
|
||||||
*/
|
*/
|
||||||
|
Reference in New Issue
Block a user