mirror of
https://github.com/google/brotli.git
synced 2024-11-09 13:40:06 +00:00
Fix typo (#951)
This commit is contained in:
parent
f842c1bcf9
commit
3914999fcc
@ -59,7 +59,7 @@ public class BrotliInputStream extends InputStream {
|
||||
throw new IOException("read after close");
|
||||
}
|
||||
int decoded;
|
||||
// Iterate until at leat one byte is decoded, or EOF reached.
|
||||
// Iterate until at least one byte is decoded, or EOF reached.
|
||||
while (true) {
|
||||
decoded = decoder.decode();
|
||||
if (decoded != 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user