Part: fix typos in make* functions

This commit is contained in:
wmayer
2022-02-16 12:48:02 +01:00
parent 8f1c5ae76d
commit 95f583a677
8 changed files with 57 additions and 54 deletions

View File

@@ -2171,7 +2171,7 @@ PyObject* TopoShapePy::makeWires(PyObject *args) {
if (!PyArg_ParseTuple(args, "s", &op))
return NULL;
PY_TRY {
return Py::new_reference_to(shape2pyshape(getTopoShapePtr()->makEWires(op)));
return Py::new_reference_to(shape2pyshape(getTopoShapePtr()->makeWires(op)));
}PY_CATCH_OCC
}