From 654a69ca0a0c1ab86aea2f6be63fe60eac61105a Mon Sep 17 00:00:00 2001 From: student Date: Mon, 12 Feb 2018 16:20:10 -0500 Subject: Formatting pass --- base/src/bjc/dicelang/expr/Token.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'base/src/bjc/dicelang/expr/Token.java') 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; -- cgit v1.2.3