summaryrefslogtreecommitdiff
path: root/base/src/bjc/dicelang/CompilerTweaker.java
diff options
context:
space:
mode:
authorstudent <student@localhost>2018-02-12 13:00:35 -0500
committerstudent <student@localhost>2018-02-12 13:00:35 -0500
commit75b790db6a759b3057c294bae3f669e5b01c8688 (patch)
tree50f60ce14ab318ccfd1be7879472cccfa53355dd /base/src/bjc/dicelang/CompilerTweaker.java
parentc8637f6156d65d52bf35c3a867c76bfbf2d0da3e (diff)
Format pass mk. 2
Diffstat (limited to 'base/src/bjc/dicelang/CompilerTweaker.java')
-rw-r--r--base/src/bjc/dicelang/CompilerTweaker.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/base/src/bjc/dicelang/CompilerTweaker.java b/base/src/bjc/dicelang/CompilerTweaker.java
index 2d0482a..219705f 100644
--- a/base/src/bjc/dicelang/CompilerTweaker.java
+++ b/base/src/bjc/dicelang/CompilerTweaker.java
@@ -20,7 +20,7 @@ public class CompilerTweaker {
* Create a new compiler tweaker.
*
* @param engine
- * The engine to tweak.
+ * The engine to tweak.
*/
public CompilerTweaker(final DiceLangEngine engine) {
eng = engine;
@@ -32,7 +32,7 @@ public class CompilerTweaker {
* Add a string literal to the compiler's internal banks.
*
* @param val
- * The string literal to add.
+ * The string literal to add.
*
* @return The key into the string literal table for this string.
*/
@@ -47,7 +47,7 @@ public class CompilerTweaker {
* Add a line defn to the compiler.
*
* @param dfn
- * The defn to add.
+ * The defn to add.
*/
public void addLineDefine(final Define dfn) {
eng.addLineDefine(dfn);
@@ -57,7 +57,7 @@ public class CompilerTweaker {
* Add a token defn to the compiler.
*
* @param dfn
- * The defn to add.
+ * The defn to add.
*/
public void addTokenDefine(final Define dfn) {
eng.addTokenDefine(dfn);
@@ -67,7 +67,7 @@ public class CompilerTweaker {
* Adds delimiters that are expanded from tokens.
*
* @param delims
- * The delimiters to expand on.
+ * The delimiters to expand on.
*/
public void addDelimiter(final String... delims) {
opExpander.addSimpleDelimiters(delims);
@@ -77,7 +77,7 @@ public class CompilerTweaker {
* Adds multi-character delimiters that are expanded from tokens.
*
* @param delims
- * The multi-character delimiters to expand on.
+ * The multi-character delimiters to expand on.
*/
public void addMultiDelimiter(final String... delims) {
opExpander.addMultiDelimiters(delims);
@@ -94,7 +94,7 @@ public class CompilerTweaker {
* Change the max no. of times defines are allowed to recur.
*
* @param times
- * The number of times to allow defines to recur.
+ * The number of times to allow defines to recur.
*/
public static void setDefineRecurLimit(final int times) {
Define.MAX_RECURS = times;