From a20d38d4be5cb8cb7c049aff5bc68e67ed9480db Mon Sep 17 00:00:00 2001 From: Fraser Greenroyd Date: Tue, 1 Aug 2023 09:45:06 +0100 Subject: [PATCH] #3117 fix spelling in Reduced input attribute for RowEchelonForm --- Geometry_Engine/Compute/RowEchelonForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Geometry_Engine/Compute/RowEchelonForm.cs b/Geometry_Engine/Compute/RowEchelonForm.cs index da270e200..7ba1397cd 100644 --- a/Geometry_Engine/Compute/RowEchelonForm.cs +++ b/Geometry_Engine/Compute/RowEchelonForm.cs @@ -37,7 +37,7 @@ public static partial class Compute [Description("Computes and returns the (Reduced) Row Echelon Form of the provided 2D double array (matrix).")] [Input("imatrix", "The matrix, as a 2D double array to compute the (reduced) row echelon form of.")] - [Input("reduced", "If true the returned matrix will have a reduced echelon form. If false, the matrix well have a row echelon form.")] + [Input("reduced", "If true the returned matrix will have a reduced echelon form. If false, the matrix will have a row echelon form.")] [Input("tolerance", "Numerical tolerance used to determine if a value in the matrix is 0. For more information on the relationship between the numerical and geometrical tolerance in Row Echelon Form calculation, see " + nameof(REFTolerance) + " method.")] [Output("ref", "The provided matrix in (reduced) row echelon form.")] public static double[,] RowEchelonForm(this double[,] imatrix, bool reduced = true, double tolerance = Tolerance.Distance)