Fix typo in docstring: wbites -> wbits

This commit is contained in:
Andrew M. Kuchling 1999-12-20 22:13:38 +00:00
parent e97ee18115
commit 313a3e36e7
1 changed files with 1 additions and 1 deletions

View File

@ -853,7 +853,7 @@ static char zlib_module_documentation[]=
"compressobj([level]) -- Return a compressor object.\n"
"crc32(string) -- Compute a CRC-32 checksum.\n"
"crc32(string, start) -- Compute a CRC-32 checksum using a given starting value.\n"
"decompress(string,[wbites],[bufsize]) -- Decompresses a compressed string.\n"
"decompress(string,[wbits],[bufsize]) -- Decompresses a compressed string.\n"
"decompressobj([wbits]) -- Return a decompressor object (wbits=window buffer size).\n\n"
"Compressor objects support compress() and flush() methods; decompressor \n"
"objects support decompress() and flush()."