fix: javadoc missing quote

This commit is contained in:
mworzala 2024-12-10 17:45:34 -05:00
parent 4e93f469dc
commit 11d7530dfc
No known key found for this signature in database
GPG Key ID: B148F922E64797C7
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ jobs:
maven-local-ignore-paths: | maven-local-ignore-paths: |
net/minestom/ net/minestom/
- name: Build Minestom - name: Build Minestom
run: ./gradlew classes testClasses run: ./gradlew classes testClasses javadoc
- name: Run Minestom tests - name: Run Minestom tests
run: ./gradlew test run: ./gradlew test
publish: publish:

View File

@ -11,7 +11,7 @@ import org.jetbrains.annotations.NotNull;
* Represents an inventory which can receive click input. * Represents an inventory which can receive click input.
* All methods returning boolean returns true if the action is successful, false otherwise. * All methods returning boolean returns true if the action is successful, false otherwise.
* <p> * <p>
* See <a href="https://minecraft.wiki/w/Minecraft_Wiki:Projects/wiki.vg_merge/Protocol#Click_Container>the Minecraft wiki</a> for more information. * See <a href="https://minecraft.wiki/w/Minecraft_Wiki:Projects/wiki.vg_merge/Protocol#Click_Container">the Minecraft wiki</a> for more information.
*/ */
public sealed interface InventoryClickHandler permits AbstractInventory { public sealed interface InventoryClickHandler permits AbstractInventory {