diff options
| author | student <student@69.161.224.78> | 2018-02-12 16:20:10 -0500 |
|---|---|---|
| committer | student <student@69.161.224.78> | 2018-02-12 16:20:10 -0500 |
| commit | 654a69ca0a0c1ab86aea2f6be63fe60eac61105a (patch) | |
| tree | 53bd2cb7f54577e9220780cc4270ea525e423c0f /base/src/bjc/dicelang/Define.java | |
| parent | 5115f1d2a7eab41436debc696870953e18a1b236 (diff) | |
Formatting pass
Diffstat (limited to 'base/src/bjc/dicelang/Define.java')
| -rw-r--r-- | base/src/bjc/dicelang/Define.java | 16 |
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) { |
