--- old/src/jdk.incubator.vector/share/classes/jdk/incubator/vector/LongVector.java 2019-07-10 11:13:54.593241100 -0700 +++ new/src/jdk.incubator.vector/share/classes/jdk/incubator/vector/LongVector.java 2019-07-10 11:13:53.990278800 -0700 @@ -1324,7 +1324,6 @@ } /** - /** * {@inheritDoc} * @see #div(long,VectorMask) */ @@ -1604,7 +1603,7 @@ * @return the bitwise complement {@code ~} of this vector * @see #and(Vector) * @see VectorOperators#NOT - * @see #lanewise(VectorOperators.Unary,Vector,VectorMask) + * @see #lanewise(VectorOperators.Unary,VectorMask) */ @ForceInline public final LongVector not() { @@ -1744,7 +1743,7 @@ * comparison operator * @see LongVector#compare(VectorOperators.Comparison,Vector) * @see #eq(long) - * @see #lessThan(long) + * @see #lt(long) */ public abstract VectorMask compare(Comparison op, long e); @@ -2550,7 +2549,8 @@ * @throws IndexOutOfBoundsException * if {@code offset+N*ESIZE < 0} * or {@code offset+(N+1)*ESIZE > a.length} - * for any lane {@code N} in the vector + * for any lane {@code N} in the vector where + * the mask is set */ @ForceInline public static @@ -2786,7 +2786,7 @@ * is not {@link ByteOrder#LITTLE_ENDIAN} * @throws IndexOutOfBoundsException * if {@code offset+N*8 < 0} - * or {@code offset+N**8 >= bb.limit()} + * or {@code offset+N*8 >= bb.limit()} * for any lane {@code N} in the vector */ @ForceInline @@ -2832,7 +2832,7 @@ * is not {@link ByteOrder#LITTLE_ENDIAN} * @throws IndexOutOfBoundsException * if {@code offset+N*8 < 0} - * or {@code offset+N**8 >= bb.limit()} + * or {@code offset+N*8 >= bb.limit()} * for any lane {@code N} in the vector * where the mask is set */