Skip to content

Commit 18e7c81

Browse files
Update MerchantWindow javadoc
1 parent 306d238 commit 18e7c81

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

invui/src/main/java/xyz/xenondevs/invui/window/MerchantWindow.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -243,31 +243,31 @@ default Builder setAvailable(boolean available) {
243243
sealed interface Builder extends Window.Builder.Split<MerchantWindow, Builder> permits MerchantWindowImpl.BuilderImpl {
244244

245245
/**
246-
* Sets the result {@link Gui} of the {@link MerchantWindow}.
246+
* Sets the 3x1 upper {@link Gui} of the {@link MerchantWindow}.
247247
*
248-
* @param gui The result input {@link Gui} of the {@link MerchantWindow}
248+
* @param gui The 3x1 upper {@link Gui} of the {@link MerchantWindow}
249249
* @return This {@link Builder}
250250
*/
251251
default Builder setUpperGui(Gui gui) {
252252
return setUpperGui(() -> gui);
253253
}
254254

255255
/**
256-
* Sets the {@link Gui.Builder} for the result input {@link Gui} of this {@link Builder}.
256+
* Sets the {@link Gui.Builder} for the 3x1 upper {@link Gui} of this {@link Builder}.
257257
* The {@link Gui.Builder} will be called every time a new {@link MerchantWindow} is created using this builder.
258258
*
259-
* @param builder The {@link Gui.Builder} for the result input {@link Gui}
259+
* @param builder The {@link Gui.Builder} for the 3x1 upper {@link Gui}
260260
* @return This {@link Builder}
261261
*/
262262
default Builder setUpperGui(Gui.Builder<?, ?> builder) {
263263
return setUpperGui(builder::build);
264264
}
265265

266266
/**
267-
* Sets the {@link Gui} {@link Supplier} for the result input {@link Gui} of this {@link Builder}.
267+
* Sets the {@link Gui} {@link Supplier} for the 3x1 upper {@link Gui} of this {@link Builder}.
268268
* The {@link Supplier} will be called every time a new {@link MerchantWindow} is created using this builder.
269269
*
270-
* @param guiSupplier The {@link Gui} {@link Supplier} for the result input {@link Gui}
270+
* @param guiSupplier The {@link Gui} {@link Supplier} for the 3x1 upper {@link Gui}
271271
* @return This {@link Builder}
272272
*/
273273
Builder setUpperGui(Supplier<? extends Gui> guiSupplier);

0 commit comments

Comments
 (0)