Fix typos in mmap() error messages (GH-6173)

This commit is contained in:
Zackery Spytz 2018-03-21 00:02:37 -06:00 committed by Xiang Zhang
parent 8f6eccdc64
commit 9308dea3e1
1 changed files with 2 additions and 2 deletions

View File

@ -1067,7 +1067,7 @@ new_mmap_object(PyTypeObject *type, PyObject *args, PyObject *kwdict)
return NULL; return NULL;
if (map_size < 0) { if (map_size < 0) {
PyErr_SetString(PyExc_OverflowError, PyErr_SetString(PyExc_OverflowError,
"memory mapped length must be postiive"); "memory mapped length must be positive");
return NULL; return NULL;
} }
if (offset < 0) { if (offset < 0) {
@ -1253,7 +1253,7 @@ new_mmap_object(PyTypeObject *type, PyObject *args, PyObject *kwdict)
if (map_size < 0) { if (map_size < 0) {
PyErr_SetString(PyExc_OverflowError, PyErr_SetString(PyExc_OverflowError,
"memory mapped length must be postiive"); "memory mapped length must be positive");
return NULL; return NULL;
} }
if (offset < 0) { if (offset < 0) {