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-exec.git
The following commit(s) were added to refs/heads/master by this push:
new 1196507d Uppercase acronym in comment
1196507d is described below
commit 1196507d004f965d0fdd692abd5b145a56c6b540
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Mar 23 18:01:32 2024 -0400
Uppercase acronym in comment
---
src/main/java/org/apache/commons/exec/OS.java | 4 ++--
src/test/java/org/apache/commons/exec/issues/Exec36Test.java | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/main/java/org/apache/commons/exec/OS.java
b/src/main/java/org/apache/commons/exec/OS.java
index 65e99511..36b14c72 100644
--- a/src/main/java/org/apache/commons/exec/OS.java
+++ b/src/main/java/org/apache/commons/exec/OS.java
@@ -166,9 +166,9 @@ public final class OS {
}
/**
- * Tests whether the OS is in the Unix family.
+ * Tests whether the OS is in the UNIX family.
*
- * @return whether the OS is in the Unix family.
+ * @return whether the OS is in the UNIX family.
*/
public static boolean isFamilyUnix() {
return isFamily(FAMILY_UNIX);
diff --git a/src/test/java/org/apache/commons/exec/issues/Exec36Test.java
b/src/test/java/org/apache/commons/exec/issues/Exec36Test.java
index 8d07d90b..ee42f84e 100644
--- a/src/test/java/org/apache/commons/exec/issues/Exec36Test.java
+++ b/src/test/java/org/apache/commons/exec/issues/Exec36Test.java
@@ -121,7 +121,7 @@ public class Exec36Test {
/**
*
- * Original example from Kai Hu which only can be tested on Unix
+ * Original example from Kai Hu which only can be tested on UNIX
*
* @throws Exception the test failed
*/