summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-09-24 19:16:48 -0700
committerPablo Galindo <pablogsal@gmail.com>2021-09-29 12:29:42 +0100
commit0b568530ecb6ccc696771acf8018ec6fff1a0a5f (patch)
treea759df3e44e6314e66b0383c238cc55e9233e34b
parent03536d31c298b1ae889d1e39d5904f86336eede3 (diff)
downloadcpython-git-0b568530ecb6ccc696771acf8018ec6fff1a0a5f.tar.gz
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>
-rw-r--r--Doc/library/codecs.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/codecs.rst b/Doc/library/codecs.rst
index 0dcd88f9fd..ef71832bce 100644
--- a/Doc/library/codecs.rst
+++ b/Doc/library/codecs.rst
@@ -923,7 +923,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