From 9bb7ebb7708ee98a4ec6ab5eddc1f08cdd7f40e6 Mon Sep 17 00:00:00 2001 From: Paldiu Date: Sun, 6 Aug 2023 17:07:49 -0500 Subject: [PATCH] Changed phrasing to match latest changes. --- Patchwork/src/main/java/fns/patchwork/command/Commander.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Patchwork/src/main/java/fns/patchwork/command/Commander.java b/Patchwork/src/main/java/fns/patchwork/command/Commander.java index 07b893c..920a853 100644 --- a/Patchwork/src/main/java/fns/patchwork/command/Commander.java +++ b/Patchwork/src/main/java/fns/patchwork/command/Commander.java @@ -27,9 +27,7 @@ import org.jetbrains.annotations.Nullable; * You are allowed to have as many methods as you want which are annotated with the {@link Subcommand} annotation. These * methods will be called when the command is executed with the specified subcommand. *
- * You are also allowed to use multiple {@link Completion} annotations per method to define multiple tab completions for - * a single subcommand. This would be useful in the case where you would like to include specific completion cases, but - * also support basic String completion cases. + * You are also allowed to use multiple {@link Completion} annotations per class to define the tab completions for each method. *
* When creating {@link Completion} annotations, you only need to register arguments a single time per class. For more * information, see {@link Subcommand}.