From 3bb578c8252934c99f57cd38f7f7433f2ee90904 Mon Sep 17 00:00:00 2001 From: "luz.paz" Date: Fri, 19 Jul 2019 22:42:23 -0400 Subject: [PATCH] Fix more typos --- src/App/PropertyLinks.h | 2 +- src/Mod/Part/App/GeometryPyImp.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App/PropertyLinks.h b/src/App/PropertyLinks.h index 181e3d6f65..5f5a1586fa 100644 --- a/src/App/PropertyLinks.h +++ b/src/App/PropertyLinks.h @@ -294,7 +294,7 @@ public: * tracking of external objects, therefore the link will not by auto broken * when external document is closed. Only use this for temporary case, or * if you handle signalDeleteDocument yourself, or use one of the - * ProeprtyXLink related property. + * PropertyXLink related property. */ void setAllowExternal(bool allow); diff --git a/src/Mod/Part/App/GeometryPyImp.cpp b/src/Mod/Part/App/GeometryPyImp.cpp index b5eab112c6..55a5bac8c9 100644 --- a/src/Mod/Part/App/GeometryPyImp.cpp +++ b/src/Mod/Part/App/GeometryPyImp.cpp @@ -303,7 +303,7 @@ PyObject* GeometryPy::getExtensionOfName(PyObject *args) try { std::shared_ptr 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(ext->getPyObject())->copy(Py::new_reference_to(Py::Tuple(size_t(0)))); return cpy;