Javadoc: Fix typo but working is still awkward.
This commit is contained in:
parent
38e829fb39
commit
3ff366c3db
|
@ -1788,11 +1788,11 @@ public class ArrayUtils {
|
||||||
* @param array
|
* @param array
|
||||||
* the array to reverse, may be {@code null}
|
* the array to reverse, may be {@code null}
|
||||||
* @param startIndexInclusive
|
* @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.
|
* change.
|
||||||
* @param endIndexExclusive
|
* @param endIndexExclusive
|
||||||
* elements up to endIndex-1 are reversed in the array. Undervalue (< start index) results in no
|
* elements up to endIndex-1 are reversed in the array. Under value (< start index) results in no
|
||||||
* change. Overvalue (>array.length) is demoted to array length.
|
* change. Over value (>array.length) is demoted to array length.
|
||||||
* @since 3.2
|
* @since 3.2
|
||||||
*/
|
*/
|
||||||
public static void reverse(final Object[] array, final int startIndexInclusive, final int endIndexExclusive) {
|
public static void reverse(final Object[] array, final int startIndexInclusive, final int endIndexExclusive) {
|
||||||
|
|
Loading…
Reference in New Issue