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 c529b5d9 Javadoc c529b5d9 is described below commit c529b5d912a873dbdb81212cff50b9aed51a473a Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sun May 18 14:01:44 2025 -0400 Javadoc --- src/main/java/org/apache/commons/codec/digest/UnixCrypt.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/codec/digest/UnixCrypt.java b/src/main/java/org/apache/commons/codec/digest/UnixCrypt.java index e77dea0e..25b32d81 100644 --- a/src/main/java/org/apache/commons/codec/digest/UnixCrypt.java +++ b/src/main/java/org/apache/commons/codec/digest/UnixCrypt.java @@ -22,7 +22,7 @@ import java.util.Arrays; import java.util.regex.Pattern; /** - * Unix crypt(3) algorithm implementation. + * Unix <a href="https://man7.org/linux/man-pages/man3/crypt.3.html">crypt(3)</a> algorithm implementation. * <p> * This class only implements the traditional 56 bit DES based algorithm. Please use Crypt.crypt() for a method * that distinguishes between all the algorithms supported in the current glibc's crypt(). @@ -33,7 +33,7 @@ import java.util.regex.Pattern; * </p> * <p> * This class is slightly incompatible if the given salt contains characters that are not part of the allowed range - * [a-zA-Z0-9./]. + * {@code [a-zA-Z0-9./]}. * </p> * <p> * This class is immutable and thread-safe.