Fix various typos

Found with codespell
This commit is contained in:
luzpaz
2024-12-03 18:56:38 +00:00
committed by Chris Hennes
parent e3508d9228
commit 2d40efd555
12 changed files with 17 additions and 17 deletions

View File

@@ -1717,7 +1717,7 @@ class HIDE_TRACK_TAG(UndefinedChunk):
class DUMMY(ChunkBase): tag = 0xFFFF
#
# Obsolute Chunks
# Obsolete Chunks
#
class VIEWPORT_LAYOUT_OLD(UndefinedChunk): tag = 0x7000

View File

@@ -300,7 +300,7 @@ def add_property(ifcfile, pset, name, value=""):
def get_freecad_type(ptype):
"""Returns a FreeCAD property type correspinding to an IFC property type"""
"""Returns a FreeCAD property type corresponding to an IFC property type"""
conv = read_properties_conversion()
for key, values in conv.items():
@@ -310,7 +310,7 @@ def get_freecad_type(ptype):
def get_ifc_type(fctype):
"""Returns an IFC property type correspinding to a FreeCAD property type"""
"""Returns an IFC property type corresponding to a FreeCAD property type"""
conv = read_properties_conversion()
for key, values in conv.items():