diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-09-25 02:22:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-25 02:22:54 (GMT) |
commit | 2a7d985bb3a1d85d63f135956750b330408702e6 (patch) | |
tree | 638326d9315cd69cbd5a985544baf9e6baefbea6 /Doc/library/codecs.rst | |
parent | 91a5ba1bcb24c87a82c1417b1e5df57c89cbd3e0 (diff) | |
download | cpython-2a7d985bb3a1d85d63f135956750b330408702e6.zip cpython-2a7d985bb3a1d85d63f135956750b330408702e6.tar.gz cpython-2a7d985bb3a1d85d63f135956750b330408702e6.tar.bz2 |
bpo-45277: Fix typo in codecs doc (GH-28555)
encoding => encode
(cherry picked from commit 4c0fc65cd8a6d4c18330505576ccd4b46abeec1c)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Diffstat (limited to 'Doc/library/codecs.rst')
-rw-r--r-- | Doc/library/codecs.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/codecs.rst b/Doc/library/codecs.rst index 3338545..2f7497c 100644 --- a/Doc/library/codecs.rst +++ b/Doc/library/codecs.rst @@ -920,7 +920,7 @@ it's a device to determine the storage layout of the encoded bytes, and vanishes once the byte sequence has been decoded into a string; as a ``ZERO WIDTH NO-BREAK SPACE`` it's a normal character that will be decoded like any other. -There's another encoding that is able to encoding the full range of Unicode +There's another encoding that is able to encode the full range of Unicode characters: UTF-8. UTF-8 is an 8-bit encoding, which means there are no issues with byte order in UTF-8. Each byte in a UTF-8 byte sequence consists of two parts: marker bits (the most significant bits) and payload bits. The marker bits |