summaryrefslogtreecommitdiff
path: root/JPratt/src/main/java/bjc/pratt/commands/impls/NonInitialCommands.java
diff options
context:
space:
mode:
authorbjculkin <bjculkin@mix.wvu.edu>2018-02-15 15:25:09 -0500
committerbjculkin <bjculkin@mix.wvu.edu>2018-02-15 15:25:09 -0500
commit5028ad9a1faad0e363d017f18363e8062ba59871 (patch)
tree80df30dc24a2cd79abf7533b98fcfcd28b1f4fee /JPratt/src/main/java/bjc/pratt/commands/impls/NonInitialCommands.java
parent1112bb1b44bb3aabe439a2b9f88a51a9c1e435de (diff)
Formatting and things
Diffstat (limited to 'JPratt/src/main/java/bjc/pratt/commands/impls/NonInitialCommands.java')
-rw-r--r--JPratt/src/main/java/bjc/pratt/commands/impls/NonInitialCommands.java34
1 files changed, 16 insertions, 18 deletions
diff --git a/JPratt/src/main/java/bjc/pratt/commands/impls/NonInitialCommands.java b/JPratt/src/main/java/bjc/pratt/commands/impls/NonInitialCommands.java
index a2c158c..82110b2 100644
--- a/JPratt/src/main/java/bjc/pratt/commands/impls/NonInitialCommands.java
+++ b/JPratt/src/main/java/bjc/pratt/commands/impls/NonInitialCommands.java
@@ -19,7 +19,7 @@ public class NonInitialCommands {
* Create a left-associative infix operator.
*
* @param precedence
- * The precedence of the operator.
+ * The precedence of the operator.
*
* @return A command implementing that operator.
*/
@@ -31,7 +31,7 @@ public class NonInitialCommands {
* Create a right-associative infix operator.
*
* @param precedence
- * The precedence of the operator.
+ * The precedence of the operator.
*
* @return A command implementing that operator.
*/
@@ -43,7 +43,7 @@ public class NonInitialCommands {
* Create a non-associative infix operator.
*
* @param precedence
- * The precedence of the operator.
+ * The precedence of the operator.
*
* @return A command implementing that operator.
*/
@@ -55,14 +55,13 @@ public class NonInitialCommands {
* Create a chained operator.
*
* @param precedence
- * The precedence of the operator.
+ * The precedence of the operator.
*
* @param chainSet
- * The operators it forms a chain with.
+ * The operators it forms a chain with.
*
* @param marker
- * The token to use as the AST node for the chained
- * operators.
+ * The token to use as the AST node for the chained operators.
*
* @return A command implementing that operator.
*/
@@ -75,7 +74,7 @@ public class NonInitialCommands {
* Create a postfix operator.
*
* @param precedence
- * The precedence of the operator.
+ * The precedence of the operator.
*
* @return A command implementing that operator.
*/
@@ -89,16 +88,16 @@ public class NonInitialCommands {
* This is an operator in form similar to array indexing.
*
* @param precedence
- * The precedence of this operator
+ * The precedence of this operator
*
* @param insidePrecedence
- * The precedence of the expression inside the operator
+ * The precedence of the expression inside the operator
*
* @param closer
- * The token that closes the circumfix.
+ * The token that closes the circumfix.
*
* @param marker
- * The token to use as the AST node for the operator.
+ * The token to use as the AST node for the operator.
*
* @return A command implementing that operator.
*/
@@ -115,20 +114,19 @@ public class NonInitialCommands {
* This is like C's ?: operator.
*
* @param precedence
- * The precedence of the operator.
+ * The precedence of the operator.
*
* @param insidePrecedence
- * The precedence of the inner section of the operator.
+ * The precedence of the inner section of the operator.
*
* @param closer
- * The token that marks the end of the inner section.
+ * The token that marks the end of the inner section.
*
* @param marker
- * The token to use as the AST node for the operator.
+ * The token to use as the AST node for the operator.
*
* @param nonassoc
- * True if the command is non-associative, false
- * otherwise.
+ * True if the command is non-associative, false otherwise.
*
* @return A command implementing this operator.
*/