summaryrefslogtreecommitdiff
path: root/dice-lang/src/bjc/dicelang/expr/Tokens.java
diff options
context:
space:
mode:
authorbjculkin <bjculkin@mix.wvu.edu>2017-04-11 17:51:13 -0400
committerbjculkin <bjculkin@mix.wvu.edu>2017-04-11 17:51:13 -0400
commit40858cee415643769ee5f6216b0cd4335996ff2f (patch)
tree86b1c334fa2e5b79cddc16984f5ad43c3c72e41f /dice-lang/src/bjc/dicelang/expr/Tokens.java
parent767ca1b248da19b754d42a814b71b43ef16090be (diff)
General cleanup and fixes
Diffstat (limited to 'dice-lang/src/bjc/dicelang/expr/Tokens.java')
-rw-r--r--dice-lang/src/bjc/dicelang/expr/Tokens.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/dice-lang/src/bjc/dicelang/expr/Tokens.java b/dice-lang/src/bjc/dicelang/expr/Tokens.java
index 08e7197..88bd99e 100644
--- a/dice-lang/src/bjc/dicelang/expr/Tokens.java
+++ b/dice-lang/src/bjc/dicelang/expr/Tokens.java
@@ -26,7 +26,7 @@ public class Tokens {
public final Map<Integer, String> symbolTable;
/*
- * Next index into the symbol table
+ * Next index into the symbol table.
*/
private int nextSym;
@@ -60,7 +60,7 @@ public class Tokens {
* Convert the string representation of a token into a token.
*
* @param tok
- * The string repr. of the token.
+ * The string representation of the token.
* @param raw
* The original string the token came from.
*