@@ -84,7 +84,7 @@ static boolean opKind(Operator op, int bit) {
84
84
// super.bOp((Byte128Vector) o);
85
85
// The purpose of that is to forcibly inline
86
86
// the generic definition from this file
87
- // into a sharply type- and size-specific
87
+ // into a sharply-typed and size-specific
88
88
// wrapper in the subclass file, so that
89
89
// the JIT can specialize the code.
90
90
// The code is only inlined and expanded
@@ -554,7 +554,7 @@ static ByteVector selectFromTwoVectorHelper(Vector<Byte> indexes, Vector<Byte> s
554
554
// Note: A surprising behavior in javadoc
555
555
// sometimes makes a lone /** {@inheritDoc} */
556
556
// comment drop the method altogether,
557
- // apparently if the method mentions an
557
+ // apparently if the method mentions a
558
558
// parameter or return type of Vector<Byte>
559
559
// instead of Vector<E> as originally specified.
560
560
// Adding an empty HTML fragment appears to
@@ -1748,7 +1748,7 @@ public final ByteVector max(byte e) {
1748
1748
* Computes the bitwise logical conjunction ({@code &})
1749
1749
* of this vector and a second input vector.
1750
1750
*
1751
- * This is a lane-wise binary operation which applies the
1751
+ * This is a lane-wise binary operation which applies
1752
1752
* the primitive bitwise "and" operation ({@code &})
1753
1753
* to each pair of corresponding lane values.
1754
1754
*
@@ -1781,7 +1781,7 @@ public final ByteVector and(Vector<Byte> v) {
1781
1781
* Computes the bitwise logical conjunction ({@code &})
1782
1782
* of this vector and a scalar.
1783
1783
*
1784
- * This is a lane-wise binary operation which applies the
1784
+ * This is a lane-wise binary operation which applies
1785
1785
* the primitive bitwise "and" operation ({@code &})
1786
1786
* to each pair of corresponding lane values.
1787
1787
*
@@ -1805,7 +1805,7 @@ public final ByteVector and(byte e) {
1805
1805
* Computes the bitwise logical disjunction ({@code |})
1806
1806
* of this vector and a second input vector.
1807
1807
*
1808
- * This is a lane-wise binary operation which applies the
1808
+ * This is a lane-wise binary operation which applies
1809
1809
* the primitive bitwise "or" operation ({@code |})
1810
1810
* to each pair of corresponding lane values.
1811
1811
*
@@ -1838,7 +1838,7 @@ public final ByteVector or(Vector<Byte> v) {
1838
1838
* Computes the bitwise logical disjunction ({@code |})
1839
1839
* of this vector and a scalar.
1840
1840
*
1841
- * This is a lane-wise binary operation which applies the
1841
+ * This is a lane-wise binary operation which applies
1842
1842
* the primitive bitwise "or" operation ({@code |})
1843
1843
* to each pair of corresponding lane values.
1844
1844
*
@@ -1906,7 +1906,7 @@ static byte reverse(byte a) {
1906
1906
* Computes the bitwise logical complement ({@code ~})
1907
1907
* of this vector.
1908
1908
*
1909
- * This is a lane-wise binary operation which applies the
1909
+ * This is a lane-wise binary operation which applies
1910
1910
* the primitive bitwise "not" operation ({@code ~})
1911
1911
* to each lane value.
1912
1912
*
@@ -2950,7 +2950,7 @@ public final byte[] toArray() {
2950
2950
2951
2951
/** {@inheritDoc} <!--workaround-->
2952
2952
* @implNote
2953
- * When this method is used on used on vectors
2953
+ * When this method is used on vectors
2954
2954
* of type {@code ByteVector},
2955
2955
* there will be no loss of precision or range,
2956
2956
* and so no {@code UnsupportedOperationException} will
@@ -2970,7 +2970,7 @@ public final int[] toIntArray() {
2970
2970
2971
2971
/** {@inheritDoc} <!--workaround-->
2972
2972
* @implNote
2973
- * When this method is used on used on vectors
2973
+ * When this method is used on vectors
2974
2974
* of type {@code ByteVector},
2975
2975
* there will be no loss of precision or range,
2976
2976
* and so no {@code UnsupportedOperationException} will
@@ -2990,7 +2990,7 @@ public final long[] toLongArray() {
2990
2990
2991
2991
/** {@inheritDoc} <!--workaround-->
2992
2992
* @implNote
2993
- * When this method is used on used on vectors
2993
+ * When this method is used on vectors
2994
2994
* of type {@code ByteVector},
2995
2995
* there will be no loss of precision.
2996
2996
*/
0 commit comments