This is an automated email from the ASF dual-hosted git repository. sebb 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 fd903ce1 Typo - DigestUtils.crypt does not exist [skip ci] fd903ce1 is described below commit fd903ce169dc6094c0386fc6ecf85f35c38fb0f5 Author: Sebb <sebb...@users.noreply.github.com> AuthorDate: Tue Jul 30 08:56:44 2024 +0100 Typo - DigestUtils.crypt does not exist [skip ci] --- src/main/java/org/apache/commons/codec/digest/UnixCrypt.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 eecbb898..2917acf7 100644 --- a/src/main/java/org/apache/commons/codec/digest/UnixCrypt.java +++ b/src/main/java/org/apache/commons/codec/digest/UnixCrypt.java @@ -24,7 +24,7 @@ import java.util.regex.Pattern; /** * UNIX crypt(3) algorithm implementation. * <p> - * This class only implements the traditional 56 bit DES based algorithm. Please use DigestUtils.crypt() for a method + * 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(). * </p> * <p>