From 0ece9a991b872244dc29ec47cba4fec5b519a6a4 Mon Sep 17 00:00:00 2001 From: Bukkit/Spigot Date: Mon, 6 May 2024 20:20:54 +1000 Subject: [PATCH] Fix copy-pasted BlockType.Typed documentation By: md_5 --- paper-api/src/main/java/org/bukkit/block/BlockType.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/paper-api/src/main/java/org/bukkit/block/BlockType.java b/paper-api/src/main/java/org/bukkit/block/BlockType.java index 9578630558..95cedd536f 100644 --- a/paper-api/src/main/java/org/bukkit/block/BlockType.java +++ b/paper-api/src/main/java/org/bukkit/block/BlockType.java @@ -128,10 +128,11 @@ import org.jetbrains.annotations.Nullable; public interface BlockType extends Keyed, Translatable { /** - * Typed represents a subtype of {@link ItemType}s that have a known item meta type - * at compile time. + * Typed represents a subtype of {@link BlockType}s that have a known block + * data type at compile time. * - * @param the generic type of the item meta that represents the item type. + * @param the generic type of the block data that represents the block + * type. */ interface Typed extends BlockType {