This is an automated email from the ASF dual-hosted git repository.
henrib pushed a commit to branch JEXL-360
in repository https://gitbox.apache.org/repos/asf/commons-jexl.git
The following commit(s) were added to refs/heads/JEXL-360 by this push:
new 9f69bce JEXL-360: javadoc fix
9f69bce is described below
commit 9f69bce5e10ed75d73acb2c73e3d5f1af73f4ea8
Author: henrib <[email protected]>
AuthorDate: Tue Feb 15 18:37:50 2022 +0100
JEXL-360: javadoc fix
---
src/main/java/org/apache/commons/jexl3/JexlOperator.java | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/main/java/org/apache/commons/jexl3/JexlOperator.java
b/src/main/java/org/apache/commons/jexl3/JexlOperator.java
index daa68f3..3a43d5b 100644
--- a/src/main/java/org/apache/commons/jexl3/JexlOperator.java
+++ b/src/main/java/org/apache/commons/jexl3/JexlOperator.java
@@ -106,7 +106,7 @@ public enum JexlOperator {
/**
* Bit-pattern right-shift operator.
- * <br><strong>Syntax:</strong> <code>x >> y</code>
+ * <br><strong>Syntax:</strong> <code>x >> y</code>
* <br><strong>Method:</strong> <code>T rightShift(L x, R y);</code>.
* @see JexlArithmetic#shiftRight(Object, Object)
*/
@@ -114,7 +114,7 @@ public enum JexlOperator {
/**
* Bit-pattern right-shift unsigned operator.
- * <br><strong>Syntax:</strong> <code>x >>> y</code>
+ * <br><strong>Syntax:</strong> <code>x >>> y</code>
* <br><strong>Method:</strong> <code>T rightShiftUnsigned(L x, R
y);</code>.
* @see JexlArithmetic#shiftRightUnsigned(Object, Object)
*/
@@ -122,7 +122,7 @@ public enum JexlOperator {
/**
* Bit-pattern left-shift operator.
- * <br><strong>Syntax:</strong> <code>x << y</code>
+ * <br><strong>Syntax:</strong> <code>x << y</code>
* <br><strong>Method:</strong> <code>T leftShift(L x, R y);</code>.
* @see JexlArithmetic#shiftLeft(Object, Object)
*/
@@ -298,21 +298,21 @@ public enum JexlOperator {
/**
* Self-right-shift operator.
- * <br><strong>Syntax:</strong> <code>x >>= y</code>
+ * <br><strong>Syntax:</strong> <code>x >>= y</code>
* <br><strong>Method:</strong> <code>T selfShiftRight(L x, R y);</code>.
*/
- SELF_SHIFTRIGHT(">>", "selfShiftRight", SHIFTRIGHT),
+ SELF_SHIFTRIGHT(">>=", "selfShiftRight", SHIFTRIGHT),
/**
* Self-right-shift unsigned operator.
- * <br><strong>Syntax:</strong> <code>x >>> y</code>
+ * <br><strong>Syntax:</strong> <code>x >>> y</code>
* <br><strong>Method:</strong> <code>T selfShiftRightUnsigned(L x, R
y);</code>.
*/
SELF_SHIFTRIGHTU(">>>=", "selfShiftRightUnsigned", SHIFTRIGHTU),
/**
* Self-left-shift operator.
- * <br><strong>Syntax:</strong> <code>x << y</code>
+ * <br><strong>Syntax:</strong> <code>x << y</code>
* <br><strong>Method:</strong> <code>T selfShiftLeft(L x, R y);</code>.
*/
SELF_SHIFTLEFT("<<=", "selfShiftLeft", SHIFTLEFT),