summaryrefslogtreecommitdiff
path: root/base/src/bjc/dicelang/Define.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/src/bjc/dicelang/Define.java')
-rw-r--r--base/src/bjc/dicelang/Define.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/base/src/bjc/dicelang/Define.java b/base/src/bjc/dicelang/Define.java
index 1051957..b11e10b 100644
--- a/base/src/bjc/dicelang/Define.java
+++ b/base/src/bjc/dicelang/Define.java
@@ -13,7 +13,7 @@ import static bjc.dicelang.Errors.ErrorKey.*;
/*
* @TODO 10/09/17 Ben Culkin :DefineRefactor
*
- * Consider replacing this with the defines package from BJC-Utils.
+ * Consider replacing this with the defines package from BJC-Utils.
*/
/**
* A regular expression based pre-processor define.
@@ -63,25 +63,25 @@ public class Define implements UnaryOperator<String>, Comparable<Define> {
* Create a new define.
*
* @param priorty
- * The priority of the define.
+ * The priority of the define.
*
* @param isSub
- * Whether or not this is a 'sub-define'
+ * Whether or not this is a 'sub-define'
*
* @param recur
- * Whether this define is recursive or not.
+ * Whether this define is recursive or not.
*
* @param isCircular
- * Whether this define is circular or not.
+ * Whether this define is circular or not.
*
* @param predicte
- * The string to use as a predicate.
+ * The string to use as a predicate.
*
* @param searchr
- * The string to use as a search.
+ * The string to use as a search.
*
* @param replacrs
- * The source for replacement strings.
+ * The source for replacement strings.
*/
public Define(final int priorty, final boolean isSub, final boolean recur, final boolean isCircular,
final String predicte, final String searchr, final Iterable<String> replacrs) {