diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-02 12:10:23 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-02 12:10:23 (GMT) |
commit | d65c9496da3485ac077fa8fd374b061afdd3605e (patch) | |
tree | 70d446dd505e744bcdf7638e6dc31fde8d4d9310 /Doc/library/zlib.rst | |
parent | 7462b64911f1e2df2de2285ddbf8b156b5cdc418 (diff) | |
download | cpython-d65c9496da3485ac077fa8fd374b061afdd3605e.zip cpython-d65c9496da3485ac077fa8fd374b061afdd3605e.tar.gz cpython-d65c9496da3485ac077fa8fd374b061afdd3605e.tar.bz2 |
Issue #25523: Further a-to-an corrections.
Diffstat (limited to 'Doc/library/zlib.rst')
-rw-r--r-- | Doc/library/zlib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/zlib.rst b/Doc/library/zlib.rst index aea0e79..230fdfe 100644 --- a/Doc/library/zlib.rst +++ b/Doc/library/zlib.rst @@ -30,7 +30,7 @@ The available exception and functions in this module are: .. function:: adler32(data[, value]) - Computes a Adler-32 checksum of *data*. (An Adler-32 checksum is almost as + Computes an Adler-32 checksum of *data*. (An Adler-32 checksum is almost as reliable as a CRC32 but can be computed much more quickly.) If *value* is present, it is used as the starting value of the checksum; otherwise, a fixed default value is used. This allows computing a running checksum over the |