File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/de/fxnn/brainfuck/tape Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 16
16
/**
17
17
* NOTE, that a {@link java.lang.Character} is not sufficient to represent each Unicode character. Actually, two
18
18
* chars are needed, a high and a low surrogate one. Therefore, we use {@link java.lang.Integer} here.
19
- * <p/ >
19
+ * <p>
20
20
* <strong>Overflow</strong> is handled such that each value on tape is in the range between
21
21
* {@link java.lang.Character#MIN_CODE_POINT} and {@link java.lang.Character#MAX_CODE_POINT}, decrementing on the
22
22
* minimum value leads to the maximum one and vice versa.
23
- * <p/ >
23
+ * <p>
24
24
* <strong>Reading EOF:</strong>
25
25
* There's the special case of {@link de.fxnn.brainfuck.tape.TapeEofBehaviour#READS_MINUS_ONE}. Then, on reading EOF
26
26
* from the input stream, the tape will contain a <code>-1</code>, which denotes no legal Character and behaves as
30
30
* <li>decrementing it leads to {@link java.lang.Character#MAX_CODE_POINT}.</li>
31
31
* <li>On output it is treated as the <code>NUL</code> character.</li>
32
32
* </ul>
33
- * <p/ >
33
+ * <p>
34
34
* See the unit tests for details.
35
35
*/
36
36
public class InfiniteCharacterTape extends AbstractInfiniteTape <Integer > {
You can’t perform that action at this time.
0 commit comments