Fix trivial typos

This commit is contained in:
luz paz
2021-08-04 07:26:26 -04:00
committed by Bernd Hahnebach
parent ea7e1d9670
commit eab07e3c5b
3 changed files with 3 additions and 3 deletions

View File

@@ -110,7 +110,7 @@ namespace dcm {
* @{ */
/**
* @brief Exeption for property errors
* @brief Exception for property errors
*
* This exception is thrown when a property related error is detected, for example if a objects is ask for a
* property which it does not own. This exceptions own the error-code range from 300-399.

View File

@@ -119,7 +119,7 @@ class _ClippingPlaneAdd(CommandManager):
class _ClippingPlaneRemoveAll(CommandManager):
"The FEM_ClippingPlaneemoveAll command definition"
"The FEM_ClippingPlaneRemoveAll command definition"
def __init__(self):
super(_ClippingPlaneRemoveAll, self).__init__()

View File

@@ -91,7 +91,7 @@ def write(
mesh_pynas_code += missing_code_pnynasmesh
# pynas file
basefilename = filename[:len(filename) - 4] # TODO basename is more failsave
basefilename = filename[:len(filename) - 4] # TODO basename is more failsafe
pynasf = open(basefilename + ".py", "w")
pynasf.write("# written by FreeCAD\n\n\n")
pynasf.write("from pyNastran.bdf.bdf import BDF\n")