diff options
author | Andrew M. Kuchling <amk@amk.ca> | 1999-12-20 22:13:38 +0000 |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 1999-12-20 22:13:38 +0000 |
commit | 313a3e36e7fbe085ea1b5161b8247367855ffc42 (patch) | |
tree | 26384bd62e8ca0a318b3290aa19e9aa8c6c79ae7 /Modules/zlibmodule.c | |
parent | e97ee18115fdb566e4146dad99597515f5fd1a8e (diff) | |
download | cpython-git-313a3e36e7fbe085ea1b5161b8247367855ffc42.tar.gz |
Fix typo in docstring: wbites -> wbits
Diffstat (limited to 'Modules/zlibmodule.c')
-rw-r--r-- | Modules/zlibmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/zlibmodule.c b/Modules/zlibmodule.c index 51478c3d96..7dda00f152 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()." |