@@ -41,8 +41,8 @@ static MerchantWindow split(Consumer<Builder> consumer) {
4141 * under {@code merchant.level.<level>}.
4242 * The following levels exist: 1 (Novice), 2 (Apprentice), 3 (Journeyman), 4 (Expert), 5 (Master).
4343 * <br>
44- * If the level is set to <= 0, no level name and an always-empty progress bar will be displayed.
45- * If the level is set to > 5, no level name and no progress bar will be displayed.
44+ * If the level is set to {@code <= 0} , no level name and an always-empty progress bar will be displayed.
45+ * If the level is set to {@code > 5} , no level name and no progress bar will be displayed.
4646 *
4747 * @param level The level of the merchant
4848 */
@@ -56,8 +56,8 @@ default void setLevel(int level) {
5656 * under {@code merchant.level.<level>}.
5757 * The following levels exist: 1 (Novice), 2 (Apprentice), 3 (Journeyman), 4 (Expert), 5 (Master).
5858 * <br>
59- * If the level is set to <= 0, no level name and an always-empty progress bar will be displayed.
60- * If the level is set to > 5, no level name and no progress bar will be displayed.
59+ * If the level is set to {@code <= 0} , no level name and an always-empty progress bar will be displayed.
60+ * If the level is set to {@code > 5} , no level name and no progress bar will be displayed.
6161 *
6262 * @param levelSupplier The supplier to retrieve the level of the merchant
6363 */
@@ -72,7 +72,7 @@ default void setLevel(int level) {
7272
7373 /**
7474 * Sets the progress of the experience bar (from 0 to 1).
75- * If set to any value < 0, the progress bar and the merchant level name will be hidden.
75+ * If set to any value {@code < 0} , the progress bar and the merchant level name will be hidden.
7676 *
7777 * @param progress The progress of the experience bar
7878 */
@@ -82,7 +82,7 @@ default void setProgress(double progress) {
8282
8383 /**
8484 * Sets a supplier to retrieve the progress of the experience bar (from 0 to 1).
85- * If set to any value < 0, the progress bar and the merchant level name will be hidden.
85+ * If set to any value {@code < 0} , the progress bar and the merchant level name will be hidden.
8686 *
8787 * @param progressSupplier The supplier to retrieve the progress of the experience bar
8888 */
@@ -339,8 +339,8 @@ default Builder setUpperGui(Gui.Builder<?, ?> builder) {
339339 * under {@code merchant.level.<level>}.
340340 * The following levels exist: 1 (Novice), 2 (Apprentice), 3 (Journeyman), 4 (Expert), 5 (Master).
341341 * <br>
342- * If the level is set to <= 0, no level name and an always-empty progress bar will be displayed.
343- * If the level is set to > 5, no level name and no progress bar will be displayed.
342+ * If the level is set to {@code <= 0} , no level name and an always-empty progress bar will be displayed.
343+ * If the level is set to {@code > 5} , no level name and no progress bar will be displayed.
344344 * <br>
345345 * Defaults to 0.
346346 *
@@ -357,8 +357,8 @@ default Builder setLevel(int level) {
357357 * under {@code merchant.level.<level>}.
358358 * The following levels exist: 1 (Novice), 2 (Apprentice), 3 (Journeyman), 4 (Expert), 5 (Master).
359359 * <br>
360- * If the level is set to <= 0, no level name and an always-empty progress bar will be displayed.
361- * If the level is set to > 5, no level name and no progress bar will be displayed.
360+ * If the level is set to {@code <= 0} , no level name and an always-empty progress bar will be displayed.
361+ * If the level is set to {@code > 5} , no level name and no progress bar will be displayed.
362362 * <br>
363363 * Defaults to 0.
364364 *
@@ -369,7 +369,7 @@ default Builder setLevel(int level) {
369369
370370 /**
371371 * Sets the progress of the experience bar (from 0 to 1).
372- * If set to any value < 0, the progress bar and the merchant level name will be hidden.
372+ * If set to any value {@code < 0} , the progress bar and the merchant level name will be hidden.
373373 * <br>
374374 * Defaults to -1 (hidden).
375375 *
@@ -382,7 +382,7 @@ default Builder setProgress(double progress) {
382382
383383 /**
384384 * Sets a supplier to retrieve the progress of the experience bar (from 0 to 1).
385- * If set to any value < 0, the progress bar and the merchant level name will be hidden.
385+ * If set to any value {@code < 0} , the progress bar and the merchant level name will be hidden.
386386 * <br>
387387 * Defaults to -1 (hidden).
388388 *
0 commit comments