From af1066f16e76e72c1d3b0363db692cfe5a4dd573 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9a=20Saviot?= Date: Thu, 13 Dec 2018 14:29:54 +0100 Subject: [PATCH] Fix typo --- apps/regression/test/model.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/regression/test/model.cpp b/apps/regression/test/model.cpp index 0df117c11..aebea93df 100644 --- a/apps/regression/test/model.cpp +++ b/apps/regression/test/model.cpp @@ -27,7 +27,7 @@ void assert_regression_is(double * xi, double * yi, int numberOfPoints, Model::T // Compute the coefficients double * coefficients = store.coefficientsForSeries(series, &context); - // Comapre the coefficients + // Compare the coefficients int numberOfCoefs = store.modelForSeries(series)->numberOfCoefficients(); for (int i = 0; i < numberOfCoefs; i++) { quiz_assert(std::fabs(coefficients[i] - trueCoefficients[i]) < precision);