diff --git a/fabric-item-api-v1/src/main/java/net/fabricmc/fabric/api/item/v1/FabricItem.java b/fabric-item-api-v1/src/main/java/net/fabricmc/fabric/api/item/v1/FabricItem.java index 65bdcec4fc..acf3e1a6cb 100644 --- a/fabric-item-api-v1/src/main/java/net/fabricmc/fabric/api/item/v1/FabricItem.java +++ b/fabric-item-api-v1/src/main/java/net/fabricmc/fabric/api/item/v1/FabricItem.java @@ -127,8 +127,8 @@ default ItemStack getRecipeRemainder(ItemStack stack) { /** * This is a stack-aware version of {@link Item#getFoodComponent()}. - * Note that simple item remainders can also be set via {@link Item.Settings#food(FoodComponent)}. - * If you want to get a remainder for a stack, is recommended to use the stack version of this method: {@link FabricItemStack#getFoodComponent()}. + * Note that simple food component can also be set via {@link Item.Settings#food(FoodComponent)}. + * If you want to get a food component for a stack, is recommended to use the stack version of this method: {@link FabricItemStack#getFoodComponent()}. * * @return this item's {@link FoodComponent}, or {@code null} if none was set. */