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 60dda7b Improve Javadoc.
60dda7b is described below
commit 60dda7ba648fb559c29d707b84257ac8b6c41ae5
Author: Gary Gregory <[email protected]>
AuthorDate: Tue Jul 14 09:02:58 2020 -0400
Improve Javadoc.
---
src/main/java/org/apache/commons/text/TextStringBuilder.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/main/java/org/apache/commons/text/TextStringBuilder.java
b/src/main/java/org/apache/commons/text/TextStringBuilder.java
index 9c683a1..8d395d3 100644
--- a/src/main/java/org/apache/commons/text/TextStringBuilder.java
+++ b/src/main/java/org/apache/commons/text/TextStringBuilder.java
@@ -1774,9 +1774,9 @@ public class TextStringBuilder implements CharSequence,
Appendable, Serializable
*
* @param startIndex first index to copy, inclusive.
* @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.
+ * @param target the target array, must not be {@code null}.
+ * @param targetIndex the index to start copying in the target.
+ * @return How many characters where copied (then deleted). If this
builder is empty, return {@code 0}.
* @since 1.9
*/
public int drainChars(final int startIndex, final int endIndex, final
char[] target, final int targetIndex) {