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 91d66c99 Uppercase acronym in comment
new 2bf68164 Merge branch 'master' of
https://gitbox.apache.org/repos/asf/commons-codec
91d66c99 is described below
commit 91d66c99d7c28f3842180ef01237b057acf8b191
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Mar 23 17:55:25 2024 -0400
Uppercase acronym in comment
---
src/main/java/org/apache/commons/codec/digest/Sha2Crypt.java | 2 +-
src/main/java/org/apache/commons/codec/digest/UnixCrypt.java | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main/java/org/apache/commons/codec/digest/Sha2Crypt.java
b/src/main/java/org/apache/commons/codec/digest/Sha2Crypt.java
index 0df7e116..e20a3a2c 100644
--- a/src/main/java/org/apache/commons/codec/digest/Sha2Crypt.java
+++ b/src/main/java/org/apache/commons/codec/digest/Sha2Crypt.java
@@ -26,7 +26,7 @@ import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
- * SHA2-based Unix crypt implementation.
+ * SHA2-based UNIX crypt implementation.
* <p>
* Based on the C implementation released into the Public Domain by Ulrich
Drepper <[email protected]>
* http://www.akkadia.org/drepper/SHA-crypt.txt
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 dc77091a..eecbb898 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 DigestUtils.crypt() for a method
* that distinguishes between all the algorithms supported in the current
glibc's crypt().