Skip to content

Commit b90be7e

Browse files
committed
Docs: fix Fit.Line return type description, fixes #903
1 parent d1e3b8a commit b90be7e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Numerics/Fit.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public static class Fit
4242
{
4343
/// <summary>
4444
/// Least-Squares fitting the points (x,y) to a line y : x -> a+b*x,
45-
/// returning its best fitting parameters as [a, b] array,
45+
/// returning its best fitting parameters as (a, b) tuple,
4646
/// where a is the intercept and b the slope.
4747
/// </summary>
4848
public static (double A, double B) Line(double[] x, double[] y)

0 commit comments

Comments
 (0)