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 16da4f1f Spelling in exception message
16da4f1f is described below
commit 16da4f1fefb0bdacfa31d681b76585269b60edb6
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Dec 31 15:24:32 2023 -0500
Spelling in exception message
---
src/main/java/org/apache/commons/exec/OS.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/commons/exec/OS.java
b/src/main/java/org/apache/commons/exec/OS.java
index 48e97c60..65e99511 100644
--- a/src/main/java/org/apache/commons/exec/OS.java
+++ b/src/main/java/org/apache/commons/exec/OS.java
@@ -287,7 +287,7 @@ public final class OS {
isFamily = OS_NAME.contains(FAMILY_VMS);
break;
default:
- throw new IllegalArgumentException("Don\'t know how to
detect os family \"" + family + "\"");
+ throw new IllegalArgumentException("Don\'t know how to
detect OS family \"" + family + "\"");
}
}
if (name != null) {