Skip to content

Commit 38811d6

Browse files
author
Ikko Ashimine
authored
Fix typo in unicodeobject.c (GH-23180)
exeeds -> exceeds Automerge-Triggered-By: GH:Mariatta
1 parent bfc6b63 commit 38811d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/unicodeobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1894,7 +1894,7 @@ _PyUnicode_Ready(PyObject *unicode)
18941894
_PyUnicode_WSTR_LENGTH(unicode) = 0;
18951895
#endif
18961896
}
1897-
/* maxchar exeeds 16 bit, wee need 4 bytes for unicode characters */
1897+
/* maxchar exceeds 16 bit, wee need 4 bytes for unicode characters */
18981898
else {
18991899
#if SIZEOF_WCHAR_T == 2
19001900
/* in case the native representation is 2-bytes, we need to allocate a

0 commit comments

Comments
 (0)