diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-11-10 06:18:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-10 06:18:34 (GMT) |
commit | 2a86ade9e38168ba49c68d1dd52ced588a80d945 (patch) | |
tree | 9108ac55647e42ec3c3c0e3e0ba100021fa362cd /Objects | |
parent | 371c33567a0b6afb93ffde2fb4564fe57a41945b (diff) | |
download | cpython-2a86ade9e38168ba49c68d1dd52ced588a80d945.zip cpython-2a86ade9e38168ba49c68d1dd52ced588a80d945.tar.gz cpython-2a86ade9e38168ba49c68d1dd52ced588a80d945.tar.bz2 |
Fix typo in unicodeobject.c (GH-23180)
exeeds -> exceeds
Automerge-Triggered-By: GH:Mariatta
(cherry picked from commit 38811d68caf9b782ea7168479acb09557e126efe)
Co-authored-by: Ikko Ashimine <eltociear@gmail.com>
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/unicodeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index d5fbf15..ea35903 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -1882,7 +1882,7 @@ _PyUnicode_Ready(PyObject *unicode) _PyUnicode_WSTR_LENGTH(unicode) = 0; #endif } - /* maxchar exeeds 16 bit, wee need 4 bytes for unicode characters */ + /* maxchar exceeds 16 bit, wee need 4 bytes for unicode characters */ else { #if SIZEOF_WCHAR_T == 2 /* in case the native representation is 2-bytes, we need to allocate a |