@@ -40,12 +40,12 @@ public final class ComparisonOperator {
4040 private final Arity arity ;
4141
4242 /**
43- * @param symbols Textual representation of this operator (e.g. <tt> =gt=</tt> ); the first item
43+ * @param symbols Textual representation of this operator (e.g. {@code =gt=} ); the first item
4444 * is primary representation, any others are alternatives. Must match
4545 * {@literal =[a-zA-Z]*=|[><]=?|!=}.
4646 * @param multiValue Whether this operator may be used with multiple arguments. This is then
4747 * validated in {@link NodesFactory}.
48- * @throws IllegalArgumentException If the {@code symbols} is either <tt> null</tt> , empty,
48+ * @throws IllegalArgumentException If the {@code symbols} is either {@code null} , empty,
4949 * or contain illegal symbols.
5050 * @see #ComparisonOperator(String[], Arity)
5151 * @deprecated in favor of {@linkplain #ComparisonOperator(String[], Arity)}
@@ -56,10 +56,10 @@ public ComparisonOperator(String[] symbols, boolean multiValue) {
5656 }
5757
5858 /**
59- * @param symbols Textual representation of this operator (e.g. <tt> =gt=</tt> ); the first item is primary
59+ * @param symbols Textual representation of this operator (e.g. {@code =gt=} ); the first item is primary
6060 * representation, any others are alternatives. Must match {@literal =[a-zA-Z]*=|[><]=?|!=}.
6161 * @param arity Arity of this operator.
62- * @throws IllegalArgumentException If the {@code symbols} is either <tt> null</tt> , empty, or contain illegal
62+ * @throws IllegalArgumentException If the {@code symbols} is either {@code null} , empty, or contain illegal
6363 * symbols.
6464 * @since 2.3.0
6565 */
@@ -75,7 +75,7 @@ public ComparisonOperator(String[] symbols, Arity arity) {
7575 }
7676
7777 /**
78- * @param symbol Textual representation of this operator (e.g. <tt> =gt=</tt> ); Must match
78+ * @param symbol Textual representation of this operator (e.g. {@code =gt=} ); Must match
7979 * {@literal =[a-zA-Z]*=|[><]=?|!=}.
8080 * @param multiValue Whether this operator may be used with multiple arguments. This is then
8181 * validated in {@link NodesFactory}.
@@ -88,7 +88,7 @@ public ComparisonOperator(String symbol, boolean multiValue) {
8888 }
8989
9090 /**
91- * @param symbol Textual representation of this operator (e.g. <tt> =gt=</tt> ); Must match
91+ * @param symbol Textual representation of this operator (e.g. {@code =gt=} ); Must match
9292 * {@literal =[a-zA-Z]*=|[><]=?|!=}.
9393 * @param arity Arity of this operator.
9494 * @see #ComparisonOperator(String[], boolean)
@@ -99,7 +99,7 @@ public ComparisonOperator(String symbol, Arity arity) {
9999 }
100100
101101 /**
102- * @param symbol Textual representation of this operator (e.g. <tt> =gt=</tt> ); Must match
102+ * @param symbol Textual representation of this operator (e.g. {@code =gt=} ); Must match
103103 * {@literal =[a-zA-Z]*=|[><]=?|!=}.
104104 * @param altSymbol Alternative representation for {@code symbol}.
105105 * @param multiValue Whether this operator may be used with multiple arguments. This is then
@@ -111,7 +111,7 @@ public ComparisonOperator(String symbol, String altSymbol, boolean multiValue) {
111111 }
112112
113113 /**
114- * @param symbol Textual representation of this operator (e.g. <tt> =gt=</tt> ); Must match
114+ * @param symbol Textual representation of this operator (e.g. {@code =gt=} ); Must match
115115 * {@literal =[a-zA-Z]*=|[><]=?|!=}.
116116 * @param altSymbol Alternative representation for {@code symbol}.
117117 * @param arity Arity of this operator.
@@ -123,7 +123,7 @@ public ComparisonOperator(String symbol, String altSymbol, Arity arity) {
123123 }
124124
125125 /**
126- * @param symbols Textual representation of this operator (e.g. <tt> =gt=</tt> ); the first item
126+ * @param symbols Textual representation of this operator (e.g. {@code =gt=} ); the first item
127127 * is primary representation, any others are alternatives. Must match {@literal =[a-zA-Z]*=|[><]=?|!=}.
128128 * @see #ComparisonOperator(String[], boolean)
129129 */
0 commit comments