You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/01/18 14:29:31 UTC

[commons-compress] branch master updated: Fix spelling

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-compress.git


The following commit(s) were added to refs/heads/master by this push:
     new 5b13010c Fix spelling
5b13010c is described below

commit 5b13010c2dc750c73874b31a05e89a254b9f7b48
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Wed Jan 18 09:29:26 2023 -0500

    Fix spelling
---
 RELEASE-NOTES.txt                                                   | 2 +-
 src/changes/changes.xml                                             | 2 +-
 src/changes/release-notes.vm                                        | 2 +-
 .../commons/compress/archivers/zip/X5455_ExtendedTimestamp.java     | 6 +++---
 .../org/apache/commons/compress/archivers/zip/X7875_NewUnix.java    | 4 ++--
 5 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index 46a68302..daec9d7c 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -1441,7 +1441,7 @@ o handle zip extra field 0x7875 - Info Zip New Unix Extra Field.
 o ZipShort, ZipLong, ZipEightByteInteger should implement Serializable
   Issue: COMPRESS-213.
   Thanks to Julius Davies.
-o better support for unix symlinks in ZipFile entries.
+o better support for Unix symlinks in ZipFile entries.
   Issue: COMPRESS-214.
   Thanks to Julius Davies.
 o ZipFile's initialization has been improved for non-Zip64 archives.
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 430aeda3..0ccf35aa 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -1873,7 +1873,7 @@ This also changes the superclass of ZCompressorInputStream.
         </action>
         <action type="update" date="2013-01-14" issue="COMPRESS-214"
                 due-to="Julius Davies">
-            better support for unix symlinks in ZipFile entries
+            better support for Unix symlinks in ZipFile entries
         </action>
         <action type="update" date="2013-01-19" issue="COMPRESS-215"
                 due-to="Robin Power">
diff --git a/src/changes/release-notes.vm b/src/changes/release-notes.vm
index 9018ec7e..225419e8 100644
--- a/src/changes/release-notes.vm
+++ b/src/changes/release-notes.vm
@@ -1505,7 +1505,7 @@ o handle zip extra field 0x7875 - Info Zip New Unix Extra Field.
 o ZipShort, ZipLong, ZipEightByteInteger should implement Serializable
   Issue: COMPRESS-213.
   Thanks to Julius Davies.
-o better support for unix symlinks in ZipFile entries.
+o better support for Unix symlinks in ZipFile entries.
   Issue: COMPRESS-214.
   Thanks to Julius Davies.
 o ZipFile's initialization has been improved for non-Zip64 archives.
diff --git a/src/main/java/org/apache/commons/compress/archivers/zip/X5455_ExtendedTimestamp.java b/src/main/java/org/apache/commons/compress/archivers/zip/X5455_ExtendedTimestamp.java
index 39fb2ab1..1cfd0ae1 100644
--- a/src/main/java/org/apache/commons/compress/archivers/zip/X5455_ExtendedTimestamp.java
+++ b/src/main/java/org/apache/commons/compress/archivers/zip/X5455_ExtendedTimestamp.java
@@ -58,7 +58,7 @@ import org.apache.commons.compress.utils.TimeUtils;
  * modern linux file systems (e.g., ext2 and newer)
  * do not appear to store a value like this, and so
  * it's usually omitted altogether in the zip extra
- * field.  Perhaps other unix systems track this.
+ * field.  Perhaps other Unix systems track this.
  * </li></ul>
  * <p>
  * We're using the field definition given in Info-Zip's source archive:
@@ -287,7 +287,7 @@ public class X5455_ExtendedTimestamp implements ZipExtraField, Cloneable, Serial
      * Note: modern linux file systems (e.g., ext2)
      * do not appear to store a "create time" value, and so
      * it's usually omitted altogether in the zip extra
-     * field. Perhaps other unix systems track this.
+     * field. Perhaps other Unix systems track this.
      * </p>
      *
      * @return create time as java.util.Date or null.
@@ -306,7 +306,7 @@ public class X5455_ExtendedTimestamp implements ZipExtraField, Cloneable, Serial
      * Note: modern linux file systems (e.g., ext2)
      * do not appear to store a "create time" value, and so
      * it's usually omitted altogether in the zip extra
-     * field. Perhaps other unix systems track this.
+     * field. Perhaps other Unix systems track this.
      * </p>
      *
      * @return create time (seconds since epoch) or null.
diff --git a/src/main/java/org/apache/commons/compress/archivers/zip/X7875_NewUnix.java b/src/main/java/org/apache/commons/compress/archivers/zip/X7875_NewUnix.java
index 046a5495..b4601d48 100644
--- a/src/main/java/org/apache/commons/compress/archivers/zip/X7875_NewUnix.java
+++ b/src/main/java/org/apache/commons/compress/archivers/zip/X7875_NewUnix.java
@@ -107,7 +107,7 @@ public class X7875_NewUnix implements ZipExtraField, Cloneable, Serializable {
              way too hard about this and no one cares!)
 
         4.)  InfoZip's tool, even though it carefully stores every UID/GID
-             for every file zipped on a unix machine (by default) currently
+             for every file zipped on a Unix machine (by default) currently
              appears unable to ever restore UID/GID.
              unzip -X has no effect on my machine, even when run as root!!!!
 
@@ -340,7 +340,7 @@ public class X7875_NewUnix implements ZipExtraField, Cloneable, Serializable {
      * parse() calls always generate clean results.
      */
     private void reset() {
-        // Typical UID/GID of the first non-root user created on a unix system.
+        // Typical UID/GID of the first non-root user created on a Unix system.
         uid = ONE_THOUSAND;
         gid = ONE_THOUSAND;
     }