From 021755dd55b742f4cda8d51854de63bc5e23abb9 Mon Sep 17 00:00:00 2001 From: BuildTools <46540330+willkroboth@users.noreply.github.com> Date: Thu, 20 Jul 2023 21:22:16 -0400 Subject: [PATCH] Fix javadoc error in FriendlyByteBuffer For some reason that stopped the entire GitHub actions build https://github.com/JorelAli/CommandAPI/actions/runs/5617486381/job/15221661407#step:4:1439 Whoops --- .../java/dev/jorel/commandapi/network/FriendlyByteBuffer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commandapi-core/src/main/java/dev/jorel/commandapi/network/FriendlyByteBuffer.java b/commandapi-core/src/main/java/dev/jorel/commandapi/network/FriendlyByteBuffer.java index 9b92268ce3..6cfc62ca9f 100644 --- a/commandapi-core/src/main/java/dev/jorel/commandapi/network/FriendlyByteBuffer.java +++ b/commandapi-core/src/main/java/dev/jorel/commandapi/network/FriendlyByteBuffer.java @@ -436,7 +436,7 @@ public void writeString(String string) { } /** - * Reads a String from this buffer. This method assumes the String was written by {@link #writeString(String).} + * Reads a String from this buffer. This method assumes the String was written by {@link #writeString(String)}. * * @return The String read from this buffer. * @throws IllegalStateException If the read index goes out of bounds while reading bytes.