Repository: commons-compress Updated Branches: refs/heads/master 3125fb600 -> f5330f7e6
(doc) fix typo in javadoc Project: http://git-wip-us.apache.org/repos/asf/commons-compress/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-compress/commit/f5330f7e Tree: http://git-wip-us.apache.org/repos/asf/commons-compress/tree/f5330f7e Diff: http://git-wip-us.apache.org/repos/asf/commons-compress/diff/f5330f7e Branch: refs/heads/master Commit: f5330f7e667f5a7245c8a5f3007cda04554c5fe2 Parents: 3125fb6 Author: Arne Babenhauserheide <arne_...@web.de> Authored: Sat Jul 7 22:30:29 2018 +0200 Committer: Stefan Bodewig <bode...@apache.org> Committed: Sun Jul 8 10:35:13 2018 +0200 ---------------------------------------------------------------------- .../apache/commons/compress/utils/SkipShieldingInputStream.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-compress/blob/f5330f7e/src/main/java/org/apache/commons/compress/utils/SkipShieldingInputStream.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/compress/utils/SkipShieldingInputStream.java b/src/main/java/org/apache/commons/compress/utils/SkipShieldingInputStream.java index 09b5ce2..e1cbcbc 100644 --- a/src/main/java/org/apache/commons/compress/utils/SkipShieldingInputStream.java +++ b/src/main/java/org/apache/commons/compress/utils/SkipShieldingInputStream.java @@ -25,7 +25,7 @@ import java.io.InputStream; * A wrapper that overwrites {@link #skip} and delegates to {@link #read} instead. * * <p>Some implementations of {@link InputStream} implement {@link - * InputStream#skip} in a way that throws an expecption if the stream + * InputStream#skip} in a way that throws an exception if the stream * is not seekable - {@link System#in System.in} is known to behave * that way. For such a stream it is impossible to invoke skip at all * and you have to read from the stream (and discard the data read)