Skip to content

Commit 4e91a21

Browse files
typo
1 parent 117ab45 commit 4e91a21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fwrite.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ int init_stream(z_stream *stream) {
566566
stream->opaque = Z_NULL;
567567
// In deflateInit2, windowBits can be –8..–15 for raw deflate, 15 is the bigger window size.
568568
// With -15, deflate() will generate raw deflate data with no zlib header or trailer, and will not compute a check value.
569-
// Previously this parameter was 31 baecause windowBits can be greater than 15 for optional gzip encoding.
569+
// Previously this parameter was 31 because windowBits can be greater than 15 for optional gzip encoding.
570570
// Adding 16 writes a simple gzip header and trailer around the compressed data.
571571
// Now we manage header and trailer. gzip file is slighty lower with -15 because no header/trailer are
572572
// written for each chunk.

0 commit comments

Comments
 (0)