diff options
author | Xtreak <tir.karthi@gmail.com> | 2019-06-03 04:42:33 +0530 |
---|---|---|
committer | Petr Viktorin <encukou@gmail.com> | 2019-06-03 01:12:33 +0200 |
commit | 0d70227e419ab78c44d81b4ea6ae8aaf769470e6 (patch) | |
tree | 7fcafd5e2f1291c61989b119eff03ce7113bc928 /Lib/encodings/__init__.py | |
parent | bpo-36027 bpo-36974: Fix "incompatible pointer type" compiler warnings (GH-13... (diff) | |
download | cpython-0d70227e419ab78c44d81b4ea6ae8aaf769470e6.tar.gz cpython-0d70227e419ab78c44d81b4ea6ae8aaf769470e6.tar.bz2 cpython-0d70227e419ab78c44d81b4ea6ae8aaf769470e6.zip |
Fix typos in docs and docstrings (GH-13745)
Diffstat (limited to 'Lib/encodings/__init__.py')
-rw-r--r-- | Lib/encodings/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/encodings/__init__.py b/Lib/encodings/__init__.py index d737d5339dc..ddd5afdcf2d 100644 --- a/Lib/encodings/__init__.py +++ b/Lib/encodings/__init__.py @@ -12,7 +12,7 @@ * getregentry() -> codecs.CodecInfo object The getregentry() API must return a CodecInfo object with encoder, decoder, incrementalencoder, incrementaldecoder, streamwriter and streamreader - atttributes which adhere to the Python Codec Interface Standard. + attributes which adhere to the Python Codec Interface Standard. In addition, a module may optionally also define the following APIs which are then used by the package's codec search function: |