Fix more typos

This commit is contained in:
luz.paz
2019-07-19 22:42:23 -04:00
committed by wmayer
parent ef2947dce6
commit 4aba7e2f5a
2 changed files with 2 additions and 2 deletions

View File

@@ -303,7 +303,7 @@ PyObject* GeometryPy::getExtensionOfName(PyObject *args)
try {
std::shared_ptr<GeometryExtension> ext(this->getGeometryPtr()->getExtension(std::string(o)));
// we create a copy and trasnfer this copy's memory management responsibility to Python
// we create a copy and transfer this copy's memory management responsibility to Python
PyObject* cpy = static_cast<GeometryExtensionPy *>(ext->getPyObject())->copy(Py::new_reference_to(Py::Tuple(size_t(0))));
return cpy;