Part: fix source comment typo

[skip ci]
This commit is contained in:
luzpaz
2023-06-25 02:37:42 +00:00
committed by Adrián Insaurralde Avalos
parent 62a681db8e
commit 1ba3c12472

View File

@@ -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.
"""