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-lang.git


The following commit(s) were added to refs/heads/master by this push:
     new 85f90523a Javadoc
     new f66f39f81 Merge branch 'master' of 
https://[email protected]/apache/commons-lang.git
85f90523a is described below

commit 85f90523a08ab99867857095597e03616d6daba9
Author: Gary D. Gregory <[email protected]>
AuthorDate: Wed Aug 20 06:56:12 2025 -0400

    Javadoc
---
 src/main/java/org/apache/commons/lang3/AppendableJoiner.java      | 8 ++++----
 src/main/java/org/apache/commons/lang3/Strings.java               | 4 ++--
 .../java/org/apache/commons/lang3/builder/AbstractSupplier.java   | 2 +-
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/main/java/org/apache/commons/lang3/AppendableJoiner.java 
b/src/main/java/org/apache/commons/lang3/AppendableJoiner.java
index 60a8d10a2..eb19fac24 100644
--- a/src/main/java/org/apache/commons/lang3/AppendableJoiner.java
+++ b/src/main/java/org/apache/commons/lang3/AppendableJoiner.java
@@ -121,7 +121,7 @@ public AppendableJoiner<T> get() {
          * Sets the delimiter that separates each element.
          *
          * @param delimiter The delimiter that separates each element.
-         * @return this instance.
+         * @return {@code this} instance.
          */
         public Builder<T> setDelimiter(final CharSequence delimiter) {
             this.delimiter = delimiter;
@@ -132,7 +132,7 @@ public Builder<T> setDelimiter(final CharSequence 
delimiter) {
          * Sets the consumer used to render each element of type {@code T} 
onto an {@link Appendable}.
          *
          * @param appender The consumer used to render each element of type 
{@code T} onto an {@link Appendable}.
-         * @return this instance.
+         * @return {@code this} instance.
          */
         public Builder<T> setElementAppender(final 
FailableBiConsumer<Appendable, T, IOException> appender) {
             this.appender = appender;
@@ -143,7 +143,7 @@ public Builder<T> setElementAppender(final 
FailableBiConsumer<Appendable, T, IOE
          * Sets the sequence of characters to be used at the beginning.
          *
          * @param prefix The sequence of characters to be used at the 
beginning.
-         * @return this instance.
+         * @return {@code this} instance.
          */
         public Builder<T> setPrefix(final CharSequence prefix) {
             this.prefix = prefix;
@@ -154,7 +154,7 @@ public Builder<T> setPrefix(final CharSequence prefix) {
          * Sets the sequence of characters to be used at the end.
          *
          * @param suffix The sequence of characters to be used at the end.
-         * @return this instance.
+         * @return {@code this} instance.
          */
         public Builder<T> setSuffix(final CharSequence suffix) {
             this.suffix = suffix;
diff --git a/src/main/java/org/apache/commons/lang3/Strings.java 
b/src/main/java/org/apache/commons/lang3/Strings.java
index 060fce2b0..ad724e560 100644
--- a/src/main/java/org/apache/commons/lang3/Strings.java
+++ b/src/main/java/org/apache/commons/lang3/Strings.java
@@ -65,7 +65,7 @@ public Strings get() {
          * Sets the ignoreCase property for new Strings instances.
          *
          * @param ignoreCase the ignoreCase property for new Strings instances.
-         * @return this instance.
+         * @return {@code this} instance.
          */
         public Builder setIgnoreCase(final boolean ignoreCase) {
             this.ignoreCase = ignoreCase;
@@ -76,7 +76,7 @@ public Builder setIgnoreCase(final boolean ignoreCase) {
          * Sets the nullIsLess property for new Strings instances.
          *
          * @param nullIsLess the nullIsLess property for new Strings instances.
-         * @return this instance.
+         * @return {@code this} instance.
          */
         public Builder setNullIsLess(final boolean nullIsLess) {
             this.nullIsLess = nullIsLess;
diff --git 
a/src/main/java/org/apache/commons/lang3/builder/AbstractSupplier.java 
b/src/main/java/org/apache/commons/lang3/builder/AbstractSupplier.java
index c802200f6..f8a6d9567 100644
--- a/src/main/java/org/apache/commons/lang3/builder/AbstractSupplier.java
+++ b/src/main/java/org/apache/commons/lang3/builder/AbstractSupplier.java
@@ -45,7 +45,7 @@ public AbstractSupplier() {
      * (B) this
      * </pre>
      *
-     * @return this instance typed as the subclass type {@code B}.
+     * @return {@code this} instance typed as the subclass type {@code B}.
      */
     @SuppressWarnings("unchecked")
     protected B asThis() {

Reply via email to