This is an automated email from the ASF dual-hosted git repository.
peterlee 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 b13c931 typos
b13c931 is described below
commit b13c93182365253fc16a1bac4d46ad6e946bf568
Author: PeterAlfredLee <[email protected]>
AuthorDate: Mon Jun 1 16:52:37 2020 +0800
typos
---
src/changes/changes.xml | 2 +-
.../apache/commons/compress/archivers/tar/TarArchiveInputStream.java | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 0c0e3f2..1c05cd1 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -101,7 +101,7 @@ The <action> type attribute can be add,update,fix,remove.
</action>
<action issue="COMPRESS-531" type="fix" date="2020-05-31">
Throw IOException when a a tar archive contains a PAX header
- without any normal entry follwoing it.
+ without any normal entry following it.
</action>
<action issue="COMPRESS-532" type="fix" date="2020-05-31">
Added improved checks to detect corrupted IMPLODED streams and
diff --git
a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.java
b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.java
index 320fc9d..618e4d1 100644
---
a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.java
+++
b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.java
@@ -682,7 +682,7 @@ public class TarArchiveInputStream extends
ArchiveInputStream {
* GNU.sparse.map
* Map of non-null data chunks. It is a string consisting of
comma-separated values "offset,size[,offset-1,size-1...]"
*
- * @param inputstream inputstream to read keys and values
+ * @param inputStream inputStream to read keys and values
* @param sparseHeaders used in PAX Format 0.0 & 0.1, as it may appear
multi times,
* the sparse headers need to be stored in an array,
not a map
* @return map of PAX headers values found inside of the current (local or
global) PAX headers tar entry.