--- jsr166/src/extra166y/ParallelLongArrayWithBounds.java 2012/07/04 20:13:53 1.3 +++ jsr166/src/extra166y/ParallelLongArrayWithBounds.java 2012/12/29 23:55:19 1.4 @@ -41,7 +41,7 @@ public abstract class ParallelLongArrayW /** * Returns the index of some element equal to given target, or - * -1 if not present + * -1 if not present. * @param target the element to search for * @return the index or -1 if not present */ @@ -77,7 +77,7 @@ public abstract class ParallelLongArrayW public abstract ParallelLongArrayWithBounds cumulate(LongReducer reducer, long base); /** - * Replaces each element with the running sum + * Replaces each element with the running sum. * @return this (to simplify use in expressions) */ public abstract ParallelLongArrayWithBounds cumulateSum(); @@ -113,7 +113,7 @@ public abstract class ParallelLongArrayW * Comparable. Unlike Arrays.sort, this sort does not * guarantee that elements with equal keys maintain their relative * position in the array. - * @throws ClassCastException if any element is not Comparable. + * @throws ClassCastException if any element is not Comparable * @return this (to simplify use in expressions) */ public abstract ParallelLongArrayWithBounds sort();