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
commit f4401a3111124896d1edd56bcb2d1a28a85e37e8 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Dec 6 17:40:27 2024 -0500 Normalize spelling Note that "UNIX" is a trademark, "Unix" is not --- 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 76394d54..9657ad6d 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 crypt(3) 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().