summaryrefslogtreecommitdiff
path: root/JPratt/src/main/java/bjc/pratt/commands/NonInitialCommand.java
diff options
context:
space:
mode:
Diffstat (limited to 'JPratt/src/main/java/bjc/pratt/commands/NonInitialCommand.java')
-rw-r--r--JPratt/src/main/java/bjc/pratt/commands/NonInitialCommand.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/JPratt/src/main/java/bjc/pratt/commands/NonInitialCommand.java b/JPratt/src/main/java/bjc/pratt/commands/NonInitialCommand.java
index d06e336..35b0825 100644
--- a/JPratt/src/main/java/bjc/pratt/commands/NonInitialCommand.java
+++ b/JPratt/src/main/java/bjc/pratt/commands/NonInitialCommand.java
@@ -11,13 +11,13 @@ import bjc.utils.parserutils.ParserException;
* @author EVE
*
* @param <K>
- * The key type for the tokens.
+ * The key type for the tokens.
*
* @param <V>
- * The value type for the tokens.
+ * The value type for the tokens.
*
* @param <C>
- * The state type of the parser.
+ * The state type of the parser.
*
*/
public abstract class NonInitialCommand<K, V, C> {
@@ -25,17 +25,17 @@ public abstract class NonInitialCommand<K, V, C> {
* Construct the left denotation of this command.
*
* @param operand
- * The left-hand operand of this command.
+ * The left-hand operand of this command.
* @param operator
- * The operator for this command.
+ * The operator for this command.
*
* @param ctx
- * The state needed for commands.
+ * The state needed for commands.
*
* @return The tree this command forms.
*
* @throws ParserException
- * If something went wrong during parsing.
+ * If something went wrong during parsing.
*/
public abstract ITree<Token<K, V>> denote(ITree<Token<K, V>> operand, Token<K, V> operator,
ParserContext<K, V, C> ctx) throws ParserException;