From 3914999fcc1fda92e750ef9190aa6db9bf7bdb07 Mon Sep 17 00:00:00 2001 From: Aayush Atharva Date: Thu, 17 Nov 2022 19:19:55 +0530 Subject: [PATCH] Fix typo (#951) --- java/org/brotli/wrapper/dec/BrotliInputStream.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/org/brotli/wrapper/dec/BrotliInputStream.java b/java/org/brotli/wrapper/dec/BrotliInputStream.java index 13a8880..9c0d54a 100644 --- a/java/org/brotli/wrapper/dec/BrotliInputStream.java +++ b/java/org/brotli/wrapper/dec/BrotliInputStream.java @@ -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) {