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


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

commit a1a6caafc55a2a9841662a2a60909d6e3ee0dd62
Author: Gary D. Gregory <[email protected]>
AuthorDate: Wed Aug 20 06:51:10 2025 -0400

    Javadoc
---
 src/main/java/org/apache/commons/codec/binary/Base32.java     | 4 ++--
 src/main/java/org/apache/commons/codec/binary/BaseNCodec.java | 2 +-
 src/main/java/org/apache/commons/codec/language/bm/Rule.java  | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/apache/commons/codec/binary/Base32.java 
b/src/main/java/org/apache/commons/codec/binary/Base32.java
index 5ebecbcb..8cdb30f5 100644
--- a/src/main/java/org/apache/commons/codec/binary/Base32.java
+++ b/src/main/java/org/apache/commons/codec/binary/Base32.java
@@ -82,7 +82,7 @@ public class Base32 extends BaseNCodec {
          * </p>
          *
          * @param useHex use Base32 hexadecimal if {@code true}, otherwise use 
the Base32 alphabet.
-         * @return this instance.
+         * @return {@code this} instance.
          * @since 1.18.0
          */
         public Builder setHexDecodeTable(final boolean useHex) {
@@ -96,7 +96,7 @@ public class Base32 extends BaseNCodec {
          * </p>
          *
          * @param useHex use Base32 hexadecimal if {@code true}, otherwise use 
the Base32 alphabet.
-         * @return this instance.
+         * @return {@code this} instance.
          * @since 1.18.0
          */
         public Builder setHexEncodeTable(final boolean useHex) {
diff --git a/src/main/java/org/apache/commons/codec/binary/BaseNCodec.java 
b/src/main/java/org/apache/commons/codec/binary/BaseNCodec.java
index 2ab1eb07..4baef5db 100644
--- a/src/main/java/org/apache/commons/codec/binary/BaseNCodec.java
+++ b/src/main/java/org/apache/commons/codec/binary/BaseNCodec.java
@@ -83,7 +83,7 @@ public abstract class BaseNCodec implements BinaryEncoder, 
BinaryDecoder {
          * (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")
         B asThis() {
diff --git a/src/main/java/org/apache/commons/codec/language/bm/Rule.java 
b/src/main/java/org/apache/commons/codec/language/bm/Rule.java
index a15e1cf1..abba578b 100644
--- a/src/main/java/org/apache/commons/codec/language/bm/Rule.java
+++ b/src/main/java/org/apache/commons/codec/language/bm/Rule.java
@@ -146,7 +146,7 @@ public class Rule {
          * Appends the sequence to the phone text.
          *
          * @param sequence The sequence to append.
-         * @return this instance.
+         * @return {@code this} instance.
          */
         public Phoneme append(final CharSequence sequence) {
             this.phonemeText.append(sequence);

Reply via email to