From c667efdb773c84fc97089124825eebdb90dcb591 Mon Sep 17 00:00:00 2001 From: UR-0 Date: Wed, 9 Jun 2021 11:54:19 +0200 Subject: [PATCH] FEM: objects create, typos --- src/Mod/Fem/ObjectsFem.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)