From de1377dc8f2875f851737cf383aeaed8bb47e4c5 Mon Sep 17 00:00:00 2001 From: Craftinators Date: Tue, 14 Mar 2023 18:25:47 -0400 Subject: [PATCH] docs(PlayerCosmeticEquipEvent): `@see` when referring to classes --- .../hmccosmetics/api/PlayerCosmeticEquipEvent.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common/src/main/java/com/hibiscusmc/hmccosmetics/api/PlayerCosmeticEquipEvent.java b/common/src/main/java/com/hibiscusmc/hmccosmetics/api/PlayerCosmeticEquipEvent.java index 7328af1b..48c28534 100644 --- a/common/src/main/java/com/hibiscusmc/hmccosmetics/api/PlayerCosmeticEquipEvent.java +++ b/common/src/main/java/com/hibiscusmc/hmccosmetics/api/PlayerCosmeticEquipEvent.java @@ -20,9 +20,9 @@ public class PlayerCosmeticEquipEvent extends CosmeticUserEvent implements Cance } /** - * Gets the cosmetic being equipped in this event. + * Gets the {@link Cosmetic} being equipped in this event. * - * @return The {@link Cosmetic} which is being equipped in this event. + * @return The {@link Cosmetic} which is being equipped in this event */ @NotNull public Cosmetic getCosmetic() { @@ -30,9 +30,9 @@ public class PlayerCosmeticEquipEvent extends CosmeticUserEvent implements Cance } /** - * Sets the cosmetic that the player will equip + * Sets the {@link Cosmetic} that the player will equip * - * @param cosmetic The cosmetic that the player will equip + * @param cosmetic The {@link Cosmetic} that the player will equip */ public void setCosmetic(@NotNull Cosmetic cosmetic) { this.cosmetic = cosmetic;