Skip to content

Commit a1a6caa

Browse files
committed
Javadoc
1 parent 49f91e7 commit a1a6caa

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/main/java/org/apache/commons/codec/binary/Base32.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public Base32 get() {
8282
* </p>
8383
*
8484
* @param useHex use Base32 hexadecimal if {@code true}, otherwise use the Base32 alphabet.
85-
* @return this instance.
85+
* @return {@code this} instance.
8686
* @since 1.18.0
8787
*/
8888
public Builder setHexDecodeTable(final boolean useHex) {
@@ -96,7 +96,7 @@ public Builder setHexDecodeTable(final boolean useHex) {
9696
* </p>
9797
*
9898
* @param useHex use Base32 hexadecimal if {@code true}, otherwise use the Base32 alphabet.
99-
* @return this instance.
99+
* @return {@code this} instance.
100100
* @since 1.18.0
101101
*/
102102
public Builder setHexEncodeTable(final boolean useHex) {

src/main/java/org/apache/commons/codec/binary/BaseNCodec.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public abstract static class AbstractBuilder<T, B extends AbstractBuilder<T, B>>
8383
* (B) this
8484
* </pre>
8585
*
86-
* @return this instance typed as the subclass type {@code B}.
86+
* @return {@code this} instance typed as the subclass type {@code B}.
8787
*/
8888
@SuppressWarnings("unchecked")
8989
B asThis() {

src/main/java/org/apache/commons/codec/language/bm/Rule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ public Phoneme(final Phoneme phonemeLeft, final Phoneme phonemeRight, final Lang
146146
* Appends the sequence to the phone text.
147147
*
148148
* @param sequence The sequence to append.
149-
* @return this instance.
149+
* @return {@code this} instance.
150150
*/
151151
public Phoneme append(final CharSequence sequence) {
152152
this.phonemeText.append(sequence);

0 commit comments

Comments
 (0)