diff --git a/src/Mod/Fem/ObjectsFem.py b/src/Mod/Fem/ObjectsFem.py index 24c848137b..885025f69a 100644 --- a/src/Mod/Fem/ObjectsFem.py +++ b/src/Mod/Fem/ObjectsFem.py @@ -285,7 +285,7 @@ def makeConstraintTie( name="ConstraintTie" ): """makeConstraintTie(document, [name]): - creates an tie object to define bonded faces constraint""" + creates a tie object to define bonded faces constraint""" obj = doc.addObject("Fem::ConstraintPython", name) from femobjects import constraint_tie constraint_tie.ConstraintTie(obj) @@ -310,7 +310,7 @@ def makeConstraintSectionPrint( name="ConstraintSectionPrint" ): """makeConstraintSectionPrint(document, [name]): - creates an section print object to evaluate forces and moments of defined face""" + creates a section print object to evaluate forces and moments of defined face""" obj = doc.addObject("Fem::ConstraintPython", name) from femobjects import constraint_sectionprint constraint_sectionprint.ConstraintSectionPrint(obj)