From: Andrew M. Kuchling Date: Mon, 20 Dec 1999 22:13:38 +0000 (+0000) Subject: Fix typo in docstring: wbites -> wbits X-Git-Tag: v1.6a1~599 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=313a3e36e7fbe085ea1b5161b8247367855ffc42;p=thirdparty%2FPython%2Fcpython.git Fix typo in docstring: wbites -> wbits --- diff --git a/Modules/zlibmodule.c b/Modules/zlibmodule.c index 51478c3d9636..7dda00f15202 100644 --- a/Modules/zlibmodule.c +++ b/Modules/zlibmodule.c @@ -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()."