aboutsummaryrefslogtreecommitdiff
path: root/java/dec/BrotliInputStream.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/dec/BrotliInputStream.java')
-rwxr-xr-xjava/dec/BrotliInputStream.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/java/dec/BrotliInputStream.java b/java/dec/BrotliInputStream.java
index 92ef15e..9117d9b 100755
--- a/java/dec/BrotliInputStream.java
+++ b/java/dec/BrotliInputStream.java
@@ -47,7 +47,7 @@ public class BrotliInputStream extends InputStream {
* <p> Will block the thread until first kilobyte of data of source is available.
*
* @param source underlying data source
- * @throws IOException in case of corrupred data or source stream problems
+ * @throws IOException in case of corrupted data or source stream problems
*/
public BrotliInputStream(InputStream source) throws IOException {
this(source, DEFAULT_INTERNAL_BUFFER_SIZE, null);
@@ -64,7 +64,7 @@ public class BrotliInputStream extends InputStream {
* @param source compressed data source
* @param byteReadBufferSize size of internal buffer used in case of
* byte-by-byte reading
- * @throws IOException in case of corrupred data or source stream problems
+ * @throws IOException in case of corrupted data or source stream problems
*/
public BrotliInputStream(InputStream source, int byteReadBufferSize) throws IOException {
this(source, byteReadBufferSize, null);
@@ -82,7 +82,7 @@ public class BrotliInputStream extends InputStream {
* @param byteReadBufferSize size of internal buffer used in case of
* byte-by-byte reading
* @param customDictionary custom dictionary data; {@code null} if not used
- * @throws IOException in case of corrupred data or source stream problems
+ * @throws IOException in case of corrupted data or source stream problems
*/
public BrotliInputStream(InputStream source, int byteReadBufferSize,
byte[] customDictionary) throws IOException {