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: |
net/minestom/
- name: Build Minestom
run: ./gradlew classes testClasses
run: ./gradlew classes testClasses javadoc
- name: Run Minestom tests
run: ./gradlew test
publish:

View File

@ -11,7 +11,7 @@ import org.jetbrains.annotations.NotNull;
* Represents an inventory which can receive click input.
* All methods returning boolean returns true if the action is successful, false otherwise.
* <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 {