Issue #1566: First sentence should end with a period violations fixed

This commit is contained in:
Ruslan Diachenko 2015-08-08 23:44:21 +01:00 committed by Roman Ivanov
parent 61f90aee7e
commit 39085d27c1
3 changed files with 5 additions and 5 deletions

View File

@ -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 &#123;&#64;link&#125;}</li>

View File

@ -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();

View File

@ -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) {