Fix misc. typos, whitespace, and http:// to https:// issues

This commit is contained in:
luz.paz
2019-08-27 08:37:36 -04:00
committed by Yorik van Havre
parent d799a1c4c7
commit 7af7c10cf1
13 changed files with 21 additions and 23 deletions

View File

@@ -231,7 +231,7 @@ void PropertyListsBase::_setPyObject(PyObject *value) {
#else
if(!PyLong_Check(key))
#endif
throw Base::TypeError("expect key type to be interger");
throw Base::TypeError("expect key type to be integer");
long idx = PyLong_AsLong(key);
if(idx<-1 || idx>listSize)
throw Base::ValueError("index out of bound");