From 264a5f6e533987c160e836406a6b4a56267ff12e Mon Sep 17 00:00:00 2001 From: Robert Greene Date: Thu, 10 Jul 2008 02:59:45 +0000 Subject: [PATCH] Correcting typos. --- src/com/webcodepro/shrinkit/io/LzwInputStream.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/webcodepro/shrinkit/io/LzwInputStream.java b/src/com/webcodepro/shrinkit/io/LzwInputStream.java index 26bca8b..61bb509 100644 --- a/src/com/webcodepro/shrinkit/io/LzwInputStream.java +++ b/src/com/webcodepro/shrinkit/io/LzwInputStream.java @@ -96,9 +96,9 @@ public class LzwInputStream extends InputStream { newEntry[w.length] = entry[0]; dictionary.add(newEntry); w = entry; - // Exclusive the current bitmask against the new dictionary size -- if all bits are + // Exclusive-OR the current bitmask against the new dictionary size -- if all bits are // on, we'll get 0. (That is, all 9 bits on is 0x01ff exclusive or bit mask of 0x01ff - // yields 0x0000.) This tells us we need to increase the number of bits we're puling + // yields 0x0000.) This tells us we need to increase the number of bits we're pulling // from the bit stream. if ((dictionary.size() ^ is.getBitMask()) == 0) { is.increaseRequestedNumberOfBits();