Skip to content

Commit 0d071fc

Browse files
committed
Fix acronym case
1 parent 8754547 commit 0d071fc

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
import org.apache.commons.lang3.StringUtils;
4747

4848
/**
49-
* 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
49+
* 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
5050
* stream using write().
5151
*
5252
* <p>

src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveSparseEntry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import java.util.List;
2424

2525
/**
26-
* A sparse entry in a <a href="https://www.gnu.org/software/tar/manual/html_node/Standard.html">Tar archive</a>.
26+
* A sparse entry in a <a href="https://www.gnu.org/software/tar/manual/html_node/Standard.html">TAR archive</a>.
2727
*
2828
* <p>
2929
* The C structure for a sparse entry is:

src/main/java/org/apache/commons/compress/archivers/tar/TarConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/**
2222
* This interface contains all the definitions used in the package.
2323
* <p>
24-
* 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
24+
* 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
2525
* {@code enum archive_format}.
2626
* </p>
2727
* <p>

src/main/java/org/apache/commons/compress/archivers/tar/TarFile.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
import org.apache.commons.io.input.BoundedInputStream;
4848

4949
/**
50-
* Provides random access to Unix archives.
50+
* Provides random access to Unix TAR files.
5151
*
5252
* @since 1.21
5353
*/

src/main/java/org/apache/commons/compress/archivers/tar/TarUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
import org.apache.commons.io.output.ByteArrayOutputStream;
4545

4646
/**
47-
* This class provides static utility methods to work with byte streams.
47+
* This class provides static utility methods to work with TAR byte streams.
4848
*
4949
* @Immutable
5050
*/

0 commit comments

Comments
 (0)