Skip to content

Commit

Permalink
shared-bindings/zlib: Fix docs for zlib.decompress.
Browse files Browse the repository at this point in the history
The docs say the method is called `zlib_decompress` but should be
just `decompress`.

Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
  • Loading branch information
jimmo committed Jun 27, 2023
1 parent c116aa0 commit ecd8b04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared-bindings/zlib/__init__.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
//| (commonly used in zlib library and gzip archiver). Compression is not yet implemented."""
//|

//| def zlib_decompress(
//| def decompress(
//| data: bytes, wbits: Optional[int] = 0, bufsize: Optional[int] = 0
//| ) -> bytes:
//| """Return decompressed *data* as bytes. *wbits* is DEFLATE dictionary window
Expand Down

0 comments on commit ecd8b04

Please sign in to comment.