diff --git a/src/main/java/com/refinedmods/refinedstorage/api/network/grid/IGridFactory.java b/src/main/java/com/refinedmods/refinedstorage/api/network/grid/IGridFactory.java index b34e74211..057ed2e50 100644 --- a/src/main/java/com/refinedmods/refinedstorage/api/network/grid/IGridFactory.java +++ b/src/main/java/com/refinedmods/refinedstorage/api/network/grid/IGridFactory.java @@ -18,7 +18,7 @@ public interface IGridFactory { * * @param player the player * @param stack the stack - * @param slot the slot in the players inventory,or curio slot, otherwise -1 + * @param slot the slot in the players inventory or curio slot, otherwise -1 * @return the grid, or null if a problem occurred */ @Nullable diff --git a/src/main/java/com/refinedmods/refinedstorage/api/network/grid/IGridManager.java b/src/main/java/com/refinedmods/refinedstorage/api/network/grid/IGridManager.java index 0afb4081a..e2c91dab3 100644 --- a/src/main/java/com/refinedmods/refinedstorage/api/network/grid/IGridManager.java +++ b/src/main/java/com/refinedmods/refinedstorage/api/network/grid/IGridManager.java @@ -36,7 +36,7 @@ public interface IGridManager { * @param id the grid factory id * @param player the player * @param stack the stack - * @param slot the slot in the players inventory,or curio slot, otherwise -1 + * @param slot the slot in the players inventory or curio slot, otherwise -1 */ void openGrid(ResourceLocation id, ServerPlayerEntity player, ItemStack stack, PlayerSlot slot); diff --git a/src/main/java/com/refinedmods/refinedstorage/api/network/item/INetworkItemManager.java b/src/main/java/com/refinedmods/refinedstorage/api/network/item/INetworkItemManager.java index 3977b5e8b..78c0ddb92 100644 --- a/src/main/java/com/refinedmods/refinedstorage/api/network/item/INetworkItemManager.java +++ b/src/main/java/com/refinedmods/refinedstorage/api/network/item/INetworkItemManager.java @@ -16,7 +16,7 @@ public interface INetworkItemManager { * * @param player the player that opened the network item * @param stack the stack that has been opened - * @param slot the slot in the players inventory,or curio slot, otherwise -1 + * @param slot the slot in the players inventory or curio slot, otherwise -1 */ void open(PlayerEntity player, ItemStack stack, PlayerSlot slot); diff --git a/src/main/java/com/refinedmods/refinedstorage/api/network/item/INetworkItemProvider.java b/src/main/java/com/refinedmods/refinedstorage/api/network/item/INetworkItemProvider.java index 5059f30c6..ea0f0e701 100644 --- a/src/main/java/com/refinedmods/refinedstorage/api/network/item/INetworkItemProvider.java +++ b/src/main/java/com/refinedmods/refinedstorage/api/network/item/INetworkItemProvider.java @@ -16,7 +16,7 @@ public interface INetworkItemProvider { * @param handler the network item handler * @param player the player * @param stack the stack - * @param slot the slot in the players inventory,or curio slot, otherwise -1 + * @param slot the slot in the players inventory or curio slot, otherwise -1 * @return the network item */ @Nonnull