From f476f1447c56940a49a6510b817f014f425a37c8 Mon Sep 17 00:00:00 2001 From: CocoTheOwner Date: Fri, 13 Aug 2021 10:13:59 +0200 Subject: [PATCH] Docs --- .../java/com/volmit/iris/util/decree/annotations/Param.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/volmit/iris/util/decree/annotations/Param.java b/src/main/java/com/volmit/iris/util/decree/annotations/Param.java index 54ca2d67f..79b682a7c 100644 --- a/src/main/java/com/volmit/iris/util/decree/annotations/Param.java +++ b/src/main/java/com/volmit/iris/util/decree/annotations/Param.java @@ -48,8 +48,8 @@ public @interface Param { /** * The default value for this argument.
* The entered string is parsed to the value similarly to how commandline-text would be.
- * Default is {@link #REQUIRED}, which indicates the variable MUST be defined. - * If you define this, the variable automatically becomes non-required. + * Default is {@link #REQUIRED}, which indicates the variable MUST be defined by the person running the command.
+ * If you define this, the variable automatically becomes non-required, but can still be set. */ String value() default REQUIRED;