Skip to content

Commit fdd560a

Browse files
Fix javadoc
1 parent f0c5418 commit fdd560a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

invui/src/main/java/xyz/xenondevs/invui/Observable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public interface Observable {
3030
* query for updates.
3131
*
3232
* @param what An integer specifying what part of this {@link Observable} the update period is requested for.
33-
* @return The update period of this {@link Observable} in ticks, or <= 0 for no auto-updates.
33+
* @return The update period of this {@link Observable} in ticks, or {@code <= 0} for no auto-updates.
3434
*/
3535
default int getUpdatePeriod(int what) {
3636
return -1;

invui/src/main/java/xyz/xenondevs/invui/gui/SlotElement.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public sealed interface SlotElement {
5656
/**
5757
* Gets the {@link Observable#getUpdatePeriod(int)} of the content of this {@link SlotElement}.
5858
*
59-
* @return The update period in ticks, or <= 0 for no auto-updates.
59+
* @return The update period in ticks, or {@code <= 0} for no auto-updates.
6060
*/
6161
int getUpdatePeriod();
6262

0 commit comments

Comments
 (0)