Issue #1566: First sentence should end with a period violations fixed
This commit is contained in:
parent
61f90aee7e
commit
39085d27c1
|
|
@ -724,7 +724,7 @@ public final class JavadocTokenTypes {
|
|||
public static final int VALUE_LITERAL = JavadocParser.VALUE_LITERAL;
|
||||
|
||||
/**
|
||||
* Parameter of these Javadoc tags:
|
||||
* Parameter of the Javadoc tags listed below.
|
||||
* <ul>
|
||||
* <li>{@link #SEE_LITERAL @see}</li>
|
||||
* <li>{@link #LINK_LITERAL {@link}}</li>
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ public class CodeSelector {
|
|||
private final List<Integer> lines2position;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
* Constructor.
|
||||
* @param ast ast node.
|
||||
* @param editor text area editor.
|
||||
* @param lines2position list to map lines.
|
||||
|
|
@ -52,7 +52,7 @@ public class CodeSelector {
|
|||
}
|
||||
|
||||
/**
|
||||
* Set a selection position from AST line and Column
|
||||
* Set a selection position from AST line and Column.
|
||||
*/
|
||||
public void select() {
|
||||
final int start = lines2position.get(ast.getLineNo()) + ast.getColumnNo();
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ public final class Main {
|
|||
private static JFrame frame;
|
||||
|
||||
/**
|
||||
* Entry point
|
||||
* Entry point.
|
||||
* @param args the command line arguments.
|
||||
*/
|
||||
public static void main(String... args) {
|
||||
|
|
@ -55,7 +55,7 @@ public final class Main {
|
|||
}
|
||||
|
||||
/**
|
||||
* Method is used for testing inthe past
|
||||
* Method is used for testing in the past.
|
||||
* @param ast tree to display
|
||||
*/
|
||||
public static void displayAst(DetailAST ast) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue