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 7e8d688f Javadoc
7e8d688f is described below
commit 7e8d688f2d3f77586dbdb685f1c389f71b7716c9
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Apr 4 07:44:33 2026 -0400
Javadoc
---
src/main/java/org/apache/commons/codec/binary/Base58.java | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/main/java/org/apache/commons/codec/binary/Base58.java
b/src/main/java/org/apache/commons/codec/binary/Base58.java
index 7c69fc31..aa0b1851 100644
--- a/src/main/java/org/apache/commons/codec/binary/Base58.java
+++ b/src/main/java/org/apache/commons/codec/binary/Base58.java
@@ -69,7 +69,7 @@ public class Base58 extends BaseNCodec {
/**
* Builds a new Base58 instance with the configured settings.
*
- * @return a new Base58 codec
+ * @return a new Base58 codec.
*/
@Override
public Base58 get() {
@@ -185,9 +185,9 @@ public class Base58 extends BaseNCodec {
* encoding.
* </p>
*
- * @param accumulate the binary data to encode
- * @param context the context for this encoding operation
- * @return the buffer containing the encoded data
+ * @param accumulate the binary data to encode.
+ * @param context the context for this encoding operation.
+ * @return the buffer containing the encoded data.
*/
private byte[] convertToBase58(final byte[] accumulate, final Context
context) {
final StringBuilder base58 = getStringBuilder(accumulate);