summaryrefslogtreecommitdiff
path: root/base/src/bjc/dicelang/expr/Token.java
diff options
context:
space:
mode:
authorstudent <student@69.161.224.78>2018-02-12 16:20:10 -0500
committerstudent <student@69.161.224.78>2018-02-12 16:20:10 -0500
commit654a69ca0a0c1ab86aea2f6be63fe60eac61105a (patch)
tree53bd2cb7f54577e9220780cc4270ea525e423c0f /base/src/bjc/dicelang/expr/Token.java
parent5115f1d2a7eab41436debc696870953e18a1b236 (diff)
Formatting pass
Diffstat (limited to 'base/src/bjc/dicelang/expr/Token.java')
-rw-r--r--base/src/bjc/dicelang/expr/Token.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/base/src/bjc/dicelang/expr/Token.java b/base/src/bjc/dicelang/expr/Token.java
index 3c6b1da..750362d 100644
--- a/base/src/bjc/dicelang/expr/Token.java
+++ b/base/src/bjc/dicelang/expr/Token.java
@@ -3,9 +3,9 @@ package bjc.dicelang.expr;
/*
* @TODO 10/08/17 :TokenReorg
*
- * I am not a fan of this 'having a bunch of subclasses' in one thing I
- * seem to have been doing around this project. This should be multiple
- * subclasses, one for each value for TokenType.
+ * I am not a fan of this 'having a bunch of subclasses' in one thing I seem to
+ * have been doing around this project. This should be multiple subclasses, one
+ * for each value for TokenType.
*/
/**
* Represents a lexical token.
@@ -33,13 +33,13 @@ public class Token {
* Create a new token.
*
* @param type
- * The type of this token.
+ * The type of this token.
*
* @param raw
- * The string this token came from.
+ * The string this token came from.
*
* @param toks
- * The state for this token
+ * The state for this token
*/
public Token(final TokenType type, final String raw, final Tokens toks) {
this.typ = type;