diff --git a/rocketpy/mathutils/function.py b/rocketpy/mathutils/function.py index 8f96d49c5..3207b3142 100644 --- a/rocketpy/mathutils/function.py +++ b/rocketpy/mathutils/function.py @@ -3010,7 +3010,7 @@ def find_root_linear_interpolation(x0, x1, y0, y1, y): -------- >>> from rocketpy import Function >>> x0, x1, y0, y1, y = 0, 1, 0, 1, 0.5 - >>> x = Function.linear_interpolation_root_finding(x0, x1, y0, y1, y) + >>> x = Function.find_root_linear_interpolation(x0, x1, y0, y1, y) >>> x 0.5 """