Fix typos in docs, comments and test assert messages (#14872)

This commit is contained in:
Min ho Kim 2019-07-22 06:12:33 +10:00 committed by Terry Jan Reedy
parent 8e3a7380ec
commit 96e12d5f4f
21 changed files with 24 additions and 24 deletions

View file

@ -300,7 +300,7 @@ PyStatus
PyWideStringList_Append(PyWideStringList *list, const wchar_t *item)
{
if (list->length == PY_SSIZE_T_MAX) {
/* lenght+1 would overflow */
/* length+1 would overflow */
return _PyStatus_NO_MEMORY();
}