Skip to content

Commit 3d19069

Browse files
committed
Fix Javadoc errors
1 parent 088ab73 commit 3d19069

File tree

7 files changed

+13
-11
lines changed

7 files changed

+13
-11
lines changed

spring-shell-core/src/main/java/org/springframework/shell/component/view/control/ProgressView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
/**
4747
* {@code ProgressView} is used to show a progress indicator.
4848
*
49-
* Defaults to <textItem> <spinnerItem> <percentItem>
49+
* Defaults to textItem, spinnerItem, percentItem
5050
*
5151
* @author Janne Valkealahti
5252
*/

spring-shell-core/src/main/java/org/springframework/shell/component/view/screen/Screen.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ interface WriterBuilder {
169169
*
170170
* @param color the color
171171
* @return a writer builder for chaining
172-
* @See Color
172+
* @see Color
173173
*/
174174
WriterBuilder color(int color);
175175

spring-shell-core/src/main/java/org/springframework/shell/jline/FileInputProvider.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828

2929
/**
3030
* An {@link InputProvider} that reads input from file-like sources.
31-
* <p>
3231
* <p>Still uses a {@link org.jline.reader.Parser} to interpret word boundaries. Supports backslashes at end
3332
* of line to signal line continuation.</p>
3433
*

spring-shell-core/src/main/java/org/springframework/shell/result/GenericResultHandlerService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
import org.springframework.util.StringUtils;
3737

3838
/**
39-
* Base {@ResultHandlerService} implementation suitable for use in most
39+
* Base {@link ResultHandlerService} implementation suitable for use in most
4040
* environments.
4141
*
4242
* @author Janne Valkealahti

spring-shell-core/src/main/java/org/springframework/shell/style/StyleSettings.java

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,19 @@ public abstract class StyleSettings {
3434

3535
/**
3636
* Styling for keys or names in a lists:
37-
* <list key1> : list value1
38-
* <list key2> : list value2
37+
* <ul>
38+
* <li>list key1 : list value1</li>
39+
* <li>list key2 : list value2</li>
40+
* </ul>
3941
*/
4042
public final static String TAG_LIST_KEY = "style-list-key";
4143

4244
/**
4345
* Styling for keys or names in a lists:
44-
* list key1 : <list value1>
45-
* list key2 : <list value2>
46+
* <ul>
47+
* <li>list key1 : list value1</li>
48+
* <li>list key2 : list value2</li>
49+
* </ul>
4650
*/
4751
public final static String TAG_LIST_VALUE = "style-list-value";
4852

spring-shell-test/src/main/java/org/springframework/shell/test/jediterm/terminal/emulator/JediEmulator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@
3636

3737
/**
3838
* The main terminal emulator class.
39-
* <p/>
39+
* <p>
4040
* Obtains data from the {@link org.springframework.shell.test.jediterm.terminal.TerminalDataStream}, interprets terminal ANSI escape sequences as commands and directs them
4141
* as well as plain data characters to the {@link org.springframework.shell.test.jediterm.terminal.Terminal}
42-
*
42+
*</p>
4343
* @author jediterm authors
4444
*/
4545
public class JediEmulator extends DataStreamIteratingEmulator {

spring-shell-test/src/main/java/org/springframework/shell/test/jediterm/terminal/model/TerminalTextBuffer.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
* screen after resize. ScrollBuffer stores all lines before the first line currently shown on the screen. TextBuffer
4040
* stores lines that are shown currently on the screen and they have there(in TextBuffer) their initial length (even if
4141
* it doesn't fit to screen width).
42-
* <p/>
4342
*
4443
* @author jediterm authors
4544
*/

0 commit comments

Comments
 (0)