From 2de0b751e44513775c569b4659877e27cc99bac8 Mon Sep 17 00:00:00 2001 From: Timo Koch <timo.koch@iws.uni-stuttgart.de> Date: Thu, 24 Sep 2020 23:15:49 +0200 Subject: [PATCH] [doc][common][spline] Fix typos --- dumux/common/monotonecubicspline.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dumux/common/monotonecubicspline.hh b/dumux/common/monotonecubicspline.hh index dc3ae15bda..74cf200065 100644 --- a/dumux/common/monotonecubicspline.hh +++ b/dumux/common/monotonecubicspline.hh @@ -43,7 +43,7 @@ namespace Dumux { /*! * \ingroup Common * \brief A monotone cubic spline - * \note Contruction after Fritsch & Butland (1984) (see https://doi.org/10.1137/0905021) + * \note Construction after Fritsch & Butland (1984) (see https://doi.org/10.1137/0905021) * \note The resulting interpolation is globally monotone but only C^1 */ template<class Scalar = double> @@ -57,7 +57,7 @@ public: MonotoneCubicSpline() = default; /*! - * \brief Contruct a monotone cubic spline from the control points (x[i], y[i]) + * \brief Construct a monotone cubic spline from the control points (x[i], y[i]) * \note if the data set is monotone, monotonicity is preserved * \param x a vector of x-coordinates * \param y a vector of y-coordinates -- GitLab