summaryrefslogtreecommitdiff
path: root/base/src/bjc/dicelang/EvaluatorResult.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/EvaluatorResult.java
parent5115f1d2a7eab41436debc696870953e18a1b236 (diff)
Formatting pass
Diffstat (limited to 'base/src/bjc/dicelang/EvaluatorResult.java')
-rw-r--r--base/src/bjc/dicelang/EvaluatorResult.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/base/src/bjc/dicelang/EvaluatorResult.java b/base/src/bjc/dicelang/EvaluatorResult.java
index f23fc71..0d0706a 100644
--- a/base/src/bjc/dicelang/EvaluatorResult.java
+++ b/base/src/bjc/dicelang/EvaluatorResult.java
@@ -82,7 +82,7 @@ public class EvaluatorResult {
* Create a new result.
*
* @param typ
- * The type of the result.
+ * The type of the result.
*/
public EvaluatorResult(final EvaluatorResult.Type typ) {
type = typ;
@@ -92,10 +92,10 @@ public class EvaluatorResult {
* Create a new result.
*
* @param typ
- * The type of the result.
+ * The type of the result.
*
* @param orig
- * The original value of the result.
+ * The original value of the result.
*/
public EvaluatorResult(final EvaluatorResult.Type typ, final ITree<Node> orig) {
this(typ);
@@ -107,10 +107,10 @@ public class EvaluatorResult {
* Create a new result.
*
* @param typ
- * The type of the result.
+ * The type of the result.
*
* @param orig
- * The original value of the result.
+ * The original value of the result.
*/
public EvaluatorResult(final EvaluatorResult.Type typ, final Node orig) {
this(typ, new Tree<>(orig));