From 5752b171fd4cc96b8d1f9526ec1940199c6e9740 Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Mon, 22 Aug 2022 13:13:06 -0700 Subject: Fix some typos. No code changes. --- crc32.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crc32.c') diff --git a/crc32.c b/crc32.c index 561d0fe..c71a689 100644 --- a/crc32.c +++ b/crc32.c @@ -645,8 +645,8 @@ unsigned long ZEXPORT crc32_z(crc, buf, len) len &= 7; /* Do three interleaved CRCs to realize the throughput of one crc32x - instruction per cycle. Each CRC is calcuated on Z_BATCH words. The three - CRCs are combined into a single CRC after each set of batches. */ + instruction per cycle. Each CRC is calculated on Z_BATCH words. The + three CRCs are combined into a single CRC after each set of batches. */ while (num >= 3 * Z_BATCH) { crc1 = 0; crc2 = 0; -- cgit v1.2.3-55-g6feb