Skip to content

Commit 97baeaa

Browse files
committed
Javadoc
1 parent 3ec4dc6 commit 97baeaa

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/main/java/org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ public String toString() {
198198
public static final int STORED = java.util.zip.ZipEntry.STORED;
199199

200200
/**
201-
* Default encoding for file names and comment.
201+
* Default Charset for file names and comment.
202202
*/
203203
static final Charset DEFAULT_CHARSET = StandardCharsets.UTF_8;
204204

src/main/java/org/apache/commons/compress/compressors/gzip/GzipUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public class GzipUtils {
5555
}
5656

5757
/**
58-
* Encoding for file name and comments per the <a href="https://tools.ietf.org/html/rfc1952">GZIP File Format Specification</a>.
58+
* Charset for file name and comments per the <a href="https://tools.ietf.org/html/rfc1952">GZIP File Format Specification</a>.
5959
*/
6060
static final Charset GZIP_ENCODING = StandardCharsets.ISO_8859_1;
6161

src/main/java/org/apache/commons/compress/utils/CharsetNames.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
@Deprecated
5858
public class CharsetNames {
5959
/**
60-
* CharEncodingISO Latin Alphabet No. 1, a.k.a. ISO-LATIN-1.
60+
* ISO Latin Alphabet No. 1, a.k.a. ISO-LATIN-1.
6161
* <p>
6262
* Every implementation of the Java platform is required to support this character encoding.
6363
* </p>

src/main/java/org/apache/commons/compress/utils/Charsets.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public class Charsets {
6565
//
6666

6767
/**
68-
* CharsetNamesISO Latin Alphabet No. 1, a.k.a. ISO-LATIN-1.
68+
* ISO Latin Alphabet No. 1, a.k.a. ISO-LATIN-1.
6969
* <p>
7070
* Every implementation of the Java platform is required to support this character encoding.
7171
* </p>

0 commit comments

Comments
 (0)