This is an automated email from the ASF dual-hosted git repository.

garydgregory 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 0d071fcd6 Fix acronym case
0d071fcd6 is described below

commit 0d071fcd6e3d2f106f75b23578aae293bee7c5f6
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jul 4 15:07:02 2026 -0400

    Fix acronym case
---
 .../apache/commons/compress/archivers/tar/TarArchiveOutputStream.java   | 2 +-
 .../apache/commons/compress/archivers/tar/TarArchiveSparseEntry.java    | 2 +-
 .../java/org/apache/commons/compress/archivers/tar/TarConstants.java    | 2 +-
 src/main/java/org/apache/commons/compress/archivers/tar/TarFile.java    | 2 +-
 src/main/java/org/apache/commons/compress/archivers/tar/TarUtils.java   | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.java
 
b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.java
index a2f76bbb5..9fa688006 100644
--- 
a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.java
+++ 
b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.java
@@ -46,7 +46,7 @@
 import org.apache.commons.lang3.StringUtils;
 
 /**
- * The TarOutputStream writes a Unix tar archive as an OutputStream. Methods 
are provided to put entries, and then write their contents by writing to this
+ * The TarOutputStream writes a Unix TAR archive as an OutputStream. Methods 
are provided to put entries, and then write their contents by writing to this
  * stream using write().
  *
  * <p>
diff --git 
a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveSparseEntry.java
 
b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveSparseEntry.java
index e819a4dc6..a1ba25879 100644
--- 
a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveSparseEntry.java
+++ 
b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveSparseEntry.java
@@ -23,7 +23,7 @@
 import java.util.List;
 
 /**
- * A sparse entry in a <a 
href="https://www.gnu.org/software/tar/manual/html_node/Standard.html";>Tar 
archive</a>.
+ * A sparse entry in a <a 
href="https://www.gnu.org/software/tar/manual/html_node/Standard.html";>TAR 
archive</a>.
  *
  * <p>
  * The C structure for a sparse entry is:
diff --git 
a/src/main/java/org/apache/commons/compress/archivers/tar/TarConstants.java 
b/src/main/java/org/apache/commons/compress/archivers/tar/TarConstants.java
index db6cd1f3e..e8644e706 100644
--- a/src/main/java/org/apache/commons/compress/archivers/tar/TarConstants.java
+++ b/src/main/java/org/apache/commons/compress/archivers/tar/TarConstants.java
@@ -21,7 +21,7 @@
 /**
  * This interface contains all the definitions used in the package.
  * <p>
- * For tar formats (FORMAT_OLDGNU, FORMAT_POSIX, etc.) see GNU tar <a 
href="https://git.savannah.gnu.org/cgit/tar.git/tree/src/tar.h?h=v1.35";>tar.h</a>
 and type
+ * For TAR formats (FORMAT_OLDGNU, FORMAT_POSIX, etc.) see GNU tar <a 
href="https://git.savannah.gnu.org/cgit/tar.git/tree/src/tar.h?h=v1.35";>tar.h</a>
 and type
  * {@code enum archive_format}.
  * </p>
  * <p>
diff --git 
a/src/main/java/org/apache/commons/compress/archivers/tar/TarFile.java 
b/src/main/java/org/apache/commons/compress/archivers/tar/TarFile.java
index 952c46b07..2dd1b443a 100644
--- a/src/main/java/org/apache/commons/compress/archivers/tar/TarFile.java
+++ b/src/main/java/org/apache/commons/compress/archivers/tar/TarFile.java
@@ -47,7 +47,7 @@
 import org.apache.commons.io.input.BoundedInputStream;
 
 /**
- * Provides random access to Unix archives.
+ * Provides random access to Unix TAR files.
  *
  * @since 1.21
  */
diff --git 
a/src/main/java/org/apache/commons/compress/archivers/tar/TarUtils.java 
b/src/main/java/org/apache/commons/compress/archivers/tar/TarUtils.java
index c0ad3a113..2e3d96812 100644
--- a/src/main/java/org/apache/commons/compress/archivers/tar/TarUtils.java
+++ b/src/main/java/org/apache/commons/compress/archivers/tar/TarUtils.java
@@ -44,7 +44,7 @@
 import org.apache.commons.io.output.ByteArrayOutputStream;
 
 /**
- * This class provides static utility methods to work with byte streams.
+ * This class provides static utility methods to work with TAR byte streams.
  *
  * @Immutable
  */

Reply via email to