Skip to content

Commit a0f837e

Browse files
fixed javadoc
1 parent 6764161 commit a0f837e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/datasiqn/commandcore/argument/Arguments.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public interface Arguments {
5555
* Checks if {@code i} is smaller than {@code size} and at least 0
5656
* @param i The number to check
5757
* @param size The total size
58-
* @throws IndexOutOfBoundsException If {@code i} >= {@code size} or {@code i} < 0
58+
* @throws IndexOutOfBoundsException If {@code i} {@literal >=} {@code size} or {@code i} {@literal <} 0
5959
*/
6060
static void checkBounds(int i, int size) {
6161
if (i >= size) throw new IndexOutOfBoundsException("index (" + i + ") is greater than total size (" + size + ")");

0 commit comments

Comments
 (0)