From 1ba3c12472e41bb99343c88571d41fd74487b827 Mon Sep 17 00:00:00 2001 From: luzpaz Date: Sun, 25 Jun 2023 02:37:42 +0000 Subject: [PATCH] Part: fix source comment typo [skip ci] --- src/Mod/PartDesign/fcgear/involute.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/PartDesign/fcgear/involute.py b/src/Mod/PartDesign/fcgear/involute.py index 0ceb2f8385..15df79ff7b 100644 --- a/src/Mod/PartDesign/fcgear/involute.py +++ b/src/Mod/PartDesign/fcgear/involute.py @@ -363,7 +363,7 @@ def toCartesian(radius, angle): def findRootNewton(f, f_prime, x_min, x_max): - """Appy Newton's Method to find the root of f within x_min and x_max + """Apply Newton's Method to find the root of f within x_min and x_max We assume that there is a root in that range and that f is strictly monotonic, i.e. we don't take precautions for overshooting beyond the input range. """