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-lang.git
The following commit(s) were added to refs/heads/master by this push: new 1ffe0a09a Normalize spelling 1ffe0a09a is described below commit 1ffe0a09a657b646c2568b4d855288d213610927 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Dec 6 17:48:49 2024 -0500 Normalize spelling Note that "UNIX" is a trademark, "Unix" is not --- src/main/java/org/apache/commons/lang3/SystemUtils.java | 2 +- src/main/java/org/apache/commons/lang3/text/StrBuilder.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/SystemUtils.java b/src/main/java/org/apache/commons/lang3/SystemUtils.java index 726f01add..652e49d3f 100644 --- a/src/main/java/org/apache/commons/lang3/SystemUtils.java +++ b/src/main/java/org/apache/commons/lang3/SystemUtils.java @@ -1671,7 +1671,7 @@ public class SystemUtils { public static final boolean IS_OS_SUN_OS = getOsNameMatches("SunOS"); /** - * The constant {@code true} if this is a UNIX like system, as in any of AIX, HP-UX, Irix, Linux, MacOSX, Solaris or SUN OS. + * The constant {@code true} if this is a Unix like system, as in any of AIX, HP-UX, Irix, Linux, MacOSX, Solaris or SUN OS. * * <p> * The field will return {@code false} if {@code OS_NAME} is {@code null}. diff --git a/src/main/java/org/apache/commons/lang3/text/StrBuilder.java b/src/main/java/org/apache/commons/lang3/text/StrBuilder.java index a76b3857e..085a07ce1 100644 --- a/src/main/java/org/apache/commons/lang3/text/StrBuilder.java +++ b/src/main/java/org/apache/commons/lang3/text/StrBuilder.java @@ -1150,7 +1150,7 @@ public class StrBuilder implements CharSequence, Appendable, Serializable, Build * By default, the new line is the system default from {@link System#lineSeparator()}. * </p> * <p> - * The new line string can be changed using {@link #setNewLineText(String)}. For example, you can use this to force the output to always use UNIX line + * The new line string can be changed using {@link #setNewLineText(String)}. For example, you can use this to force the output to always use Unix line * endings even when on Windows. * </p> *