[3.8] Fix typos in docs, comments and test assert messages (GH-14872). (#14900)

(cherry picked from commit 96e12d5f4f)

Co-authored-by: Min ho Kim <minho42@gmail.com>
This commit is contained in:
Kyle Stanley 2019-07-21 22:48:45 -04:00 committed by Terry Jan Reedy
parent 0104841d12
commit 24b5b360fa
20 changed files with 23 additions and 23 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();
}