From b4783df755eb5483296e3ec1fd91548231015d48 Mon Sep 17 00:00:00 2001 From: luz paz Date: Fri, 3 Dec 2021 15:32:31 -0500 Subject: [PATCH] Fix source comment typos --- freecad/gears/features.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/freecad/gears/features.py b/freecad/gears/features.py index bc212ee..dd44831 100644 --- a/freecad/gears/features.py +++ b/freecad/gears/features.py @@ -1606,7 +1606,7 @@ def helicalextrusion(face, height, angle, double_helix=False): """ A helical extrusion using the BRepOffsetAPI face -- the face to extrude (may contain holes, i.e. more then one wires) - height -- the hight of the extrusion, normal to the face + height -- the height of the extrusion, normal to the face angle -- the twist angle of the extrusion in radians returns a solid @@ -1618,7 +1618,7 @@ def helicalextrusion(face, height, angle, double_helix=False): if double_helix: spine = Part.makeHelix(pitch, height / 2.0, radius, cone_angle, direction) spine.translate(App.Vector(0, 0, height / 2.0)) - face = face.translated(App.Vector(0, 0, height / 2.0)) # don't transfrom our argument + face = face.translated(App.Vector(0, 0, height / 2.0)) # don't transform our argument else: spine = Part.makeHelix(pitch, height, radius, cone_angle, direction) def make_pipe(path, profile):