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);