patch doc

This commit is contained in:
CocoTheOwner 2021-08-12 23:41:27 +02:00
parent 864ca81d1d
commit c8907232da
2 changed files with 1 additions and 2 deletions

View File

@ -21,7 +21,6 @@ package com.volmit.iris.util.decree;
import com.volmit.iris.util.collection.KList; import com.volmit.iris.util.collection.KList;
import com.volmit.iris.util.decree.annotations.Param; import com.volmit.iris.util.decree.annotations.Param;
import com.volmit.iris.util.decree.exceptions.DecreeInstanceException; import com.volmit.iris.util.decree.exceptions.DecreeInstanceException;
import com.volmit.iris.util.decree.exceptions.DecreeParsingException;
import java.lang.reflect.Parameter; import java.lang.reflect.Parameter;
import java.util.Arrays; import java.util.Arrays;

View File

@ -33,7 +33,7 @@ public @interface Decree {
String NO_ALIASES = "No Aliases"; String NO_ALIASES = "No Aliases";
/** /**
* The name of this method, which is the actual Method's name by default * The name of this command, which is the Method's name by default
*/ */
String name() default METHOD_NAME; String name() default METHOD_NAME;