diff --git a/src/Mod/Arch/ArchComponent.py b/src/Mod/Arch/ArchComponent.py index 9cfe24cda4..b13c3cfc6e 100644 --- a/src/Mod/Arch/ArchComponent.py +++ b/src/Mod/Arch/ArchComponent.py @@ -400,7 +400,7 @@ With this copy, it gets the the shape was originally extruded from, of the extrusion, and the needed to move the copy back to it's original location/orientation. It will return this data as a tuple. -If it encouters an object derived from a , it will return this data +If it encounters an object derived from a , it will return this data as a tuple containing lists. The lists will contain the same data as above, from each of the objects within the multifuse. diff --git a/src/Mod/Arch/ArchWall.py b/src/Mod/Arch/ArchWall.py index 7086b2ad41..fb213732f8 100644 --- a/src/Mod/Arch/ArchWall.py +++ b/src/Mod/Arch/ArchWall.py @@ -259,7 +259,7 @@ https://wiki.freecadweb.org/Arch_Wall """ def GetResources(self): - """Returns a dictonary with the visual aspects of the Arch Wall tool.""" + """Returns a dictionary with the visual aspects of the Arch Wall tool.""" return {'Pixmap' : 'Arch_Wall', 'MenuText': QT_TRANSLATE_NOOP("Arch_Wall","Wall"), @@ -406,7 +406,7 @@ obj: , optional self.Activated() def addDefault(self): - """Creates a wall using a line segment, with all paramters as the default. + """Creates a wall using a line segment, with all parameters as the default. Used solely by _CommandWall.getPoint() when the interactive mode has selected two points. @@ -432,7 +432,7 @@ Part.LineSegment assigned as the variable "trace" def update(self,point): """Callback for the mouse moving during the interactive mode. -Updates the active dialog box to show the co-ordinates of the location of the +Updates the active dialog box to show the coordinates of the location of the cursor. It also shows the length the line would take, if the user selected that point. @@ -617,7 +617,7 @@ https://wiki.freecadweb.org/Arch_MergeWalls """ def GetResources(self): - """Returns a dictonary with the visual aspects of the Arch MergeWalls tool.""" + """Returns a dictionary with the visual aspects of the Arch MergeWalls tool.""" return {'Pixmap' : 'Arch_MergeWalls', 'MenuText': QT_TRANSLATE_NOOP("Arch_MergeWalls","Merge Walls"),