This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-text.git


The following commit(s) were added to refs/heads/master by this push:
     new 4040a80  Javadoc.
4040a80 is described below

commit 4040a800680d20c36ba262af06c3991fe5ea9ac7
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sat Jul 4 10:07:47 2020 -0400

    Javadoc.
---
 .../org/apache/commons/text/TextStringBuilder.java     | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/main/java/org/apache/commons/text/TextStringBuilder.java 
b/src/main/java/org/apache/commons/text/TextStringBuilder.java
index 307f1ce..fc9aaa6 100644
--- a/src/main/java/org/apache/commons/text/TextStringBuilder.java
+++ b/src/main/java/org/apache/commons/text/TextStringBuilder.java
@@ -1880,12 +1880,12 @@ public class TextStringBuilder implements CharSequence, 
Appendable, Serializable
     /**
      * Copies this character array into the specified array.
      *
-     * @param startIndex first index to copy, inclusive, must be valid
-     * @param endIndex last index, exclusive, must be valid
-     * @param target the target array, must not be null or too small
-     * @param targetIndex the index to start copying in target
-     * @throws NullPointerException if the array is null
-     * @throws IndexOutOfBoundsException if any index is invalid
+     * @param startIndex first index to copy, inclusive, must be valid.
+     * @param endIndex last index to copy, exclusive, must be valid.
+     * @param target the target array, must not be null or too small.
+     * @param targetIndex the index to start copying in target.
+     * @throws NullPointerException if the array is null.
+     * @throws IndexOutOfBoundsException if any index is invalid.
      */
     public void getChars(final int startIndex, final int endIndex, final 
char[] target, final int targetIndex) {
         if (startIndex < 0) {
@@ -1904,9 +1904,9 @@ public class TextStringBuilder implements CharSequence, 
Appendable, Serializable
      * Copies this character array into the specified array and then deletes 
those character from this source.
      *
      * @param startIndex first index to copy, inclusive.
-     * @param endIndex last index, exclusive.
-     * @param target the target array, must not be null or too small
-     * @param targetIndex the index to start copying in target
+     * @param endIndex last index to copy, exclusive.
+     * @param target the target array, must not be null.
+     * @param targetIndex the index to start copying in target.
      * @return How many characters where deleted. If this builder is empty, 
return 0.
      * @since 1.9
      */

Reply via email to