LANG-1402: more comment proofreading
Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/ec2ec774 Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/ec2ec774 Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/ec2ec774 Branch: refs/heads/master Commit: ec2ec774925cb845f85a82f85c32d0019de31f01 Parents: 96f3ab8 Author: MarkDacek <mark.da...@richmond.edu> Authored: Sun Jul 8 19:35:13 2018 -0400 Committer: MarkDacek <mark.da...@richmond.edu> Committed: Sun Jul 8 19:35:13 2018 -0400 ---------------------------------------------------------------------- src/main/java/org/apache/commons/lang3/ArrayUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-lang/blob/ec2ec774/src/main/java/org/apache/commons/lang3/ArrayUtils.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/lang3/ArrayUtils.java b/src/main/java/org/apache/commons/lang3/ArrayUtils.java index 3d5c6b0..9ed6b68 100644 --- a/src/main/java/org/apache/commons/lang3/ArrayUtils.java +++ b/src/main/java/org/apache/commons/lang3/ArrayUtils.java @@ -8678,7 +8678,7 @@ public class ArrayUtils { * @param <T> the component type of the array, may be null * @param array the array holding the desired element * @param index the index of the element in the array - * @return The element in the array at the index, or null if it is ill-formatted + * @return The element in the array at the index, or null if the array is not sufficiently long for the index. May return null if the array contains null * @since 3.8 */ public static <T> T get(T[] array, int index){