From 95246b21de722bcb85256d4fe787d59a61b2e58c Mon Sep 17 00:00:00 2001 From: Revar Desmera Date: Wed, 19 Jul 2023 21:06:33 -0700 Subject: [PATCH] More extra commas excised. --- gears.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gears.scad b/gears.scad index cde7dcce..d56e9d90 100644 --- a/gears.scad +++ b/gears.scad @@ -1610,7 +1610,7 @@ function worm( let( circ_pitch = _inherit_gear_pitch("worm()", pitch, circ_pitch, diam_pitch, mod), PA = _inherit_gear_pa(pressure_angle), - profile_shift = default(profile_shift, 0), + profile_shift = default(profile_shift, 0) ) assert(is_integer(starts) && starts>0) assert(is_finite(l) && l>0) @@ -1805,7 +1805,7 @@ function worm_gear( let( circ_pitch = _inherit_gear_pitch("worm_gear()", pitch, circ_pitch, diam_pitch, mod), PA = _inherit_gear_pa(pressure_angle), - profile_shift = default(profile_shift, auto_profile_shift(teeth,PA)), + profile_shift = default(profile_shift, auto_profile_shift(teeth,PA)) ) assert(is_integer(teeth) && teeth>10) assert(is_finite(worm_diam) && worm_diam>0)