Javadoc: Fix typo but working is still awkward.

This commit is contained in:
ggregory 2015-06-27 14:44:36 -07:00
parent 38e829fb39
commit 3ff366c3db
1 changed files with 7893 additions and 7893 deletions

View File

@ -1788,11 +1788,11 @@ public static void reverse(final long[] array, final int startIndexInclusive, fi
* @param array
* the array to reverse, may be {@code null}
* @param startIndexInclusive
* the starting index. Undervalue (<0) is promoted to 0, overvalue (>array.length) results in no
* the starting index. Under value (<0) is promoted to 0, over value (>array.length) results in no
* change.
* @param endIndexExclusive
* elements up to endIndex-1 are reversed in the array. Undervalue (< start index) results in no
* change. Overvalue (>array.length) is demoted to array length.
* elements up to endIndex-1 are reversed in the array. Under value (< start index) results in no
* change. Over value (>array.length) is demoted to array length.
* @since 3.2
*/
public static void reverse(final Object[] array, final int startIndexInclusive, final int endIndexExclusive) {