diff --git a/src/main/java/net/minestom/server/command/CommandProcessor.java b/src/main/java/net/minestom/server/command/CommandProcessor.java index 1f6ae9d71..4de2e97e4 100644 --- a/src/main/java/net/minestom/server/command/CommandProcessor.java +++ b/src/main/java/net/minestom/server/command/CommandProcessor.java @@ -36,7 +36,7 @@ public interface CommandProcessor { String[] getAliases(); /** - * Called when the command is executed by a {@link CommandSender} + * Called when the command is executed by a {@link CommandSender}. * * @param sender the sender which executed the command * @param command the command name used @@ -48,7 +48,7 @@ public interface CommandProcessor { /** * Called to know if a player has access to the command. *

- * Right now it is only used to know if the player should see the command in auto-completion + * Right now it is only used to know if the player should see the command in auto-completion. * Conditions still need to be checked in {@link #process(CommandSender, String, String[])}. * * @param player the player to check the access