Skip to content

Commit 758cc33

Browse files
committed
fix javadoc errors
1 parent 2aa2a5b commit 758cc33

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/de/fxnn/brainfuck/tape/InfiniteCharacterTape.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
/**
1717
* NOTE, that a {@link java.lang.Character} is not sufficient to represent each Unicode character. Actually, two
1818
* chars are needed, a high and a low surrogate one. Therefore, we use {@link java.lang.Integer} here.
19-
* <p/>
19+
* <p>
2020
* <strong>Overflow</strong> is handled such that each value on tape is in the range between
2121
* {@link java.lang.Character#MIN_CODE_POINT} and {@link java.lang.Character#MAX_CODE_POINT}, decrementing on the
2222
* minimum value leads to the maximum one and vice versa.
23-
* <p/>
23+
* <p>
2424
* <strong>Reading EOF:</strong>
2525
* There's the special case of {@link de.fxnn.brainfuck.tape.TapeEofBehaviour#READS_MINUS_ONE}. Then, on reading EOF
2626
* from the input stream, the tape will contain a <code>-1</code>, which denotes no legal Character and behaves as
@@ -30,7 +30,7 @@
3030
* <li>decrementing it leads to {@link java.lang.Character#MAX_CODE_POINT}.</li>
3131
* <li>On output it is treated as the <code>NUL</code> character.</li>
3232
* </ul>
33-
* <p/>
33+
* <p>
3434
* See the unit tests for details.
3535
*/
3636
public class InfiniteCharacterTape extends AbstractInfiniteTape<Integer> {

0 commit comments

Comments
 (0)