Skip to content

Commit 9fc0539

Browse files
committed
reword comment
1 parent 8c7ef90 commit 9fc0539

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cloud-minecraft/cloud-paper/src/main/java/cloud/commandframework/paper/AsyncCommandSuggestionsListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ final class AsyncCommandSuggestionsListener<C> implements Listener {
4242

4343
@EventHandler
4444
void onTabCompletion(final @NonNull AsyncTabCompleteEvent event) {
45-
/* Turn '(/)plugin:command arg1 arg2 ...' into 'plugin:command arg1 arg2 ...' */
45+
// Strip leading slash
4646
final String strippedBuffer = event.getBuffer().startsWith("/")
4747
? event.getBuffer().substring(1)
4848
: event.getBuffer();

0 commit comments

Comments
 (0)