Skip to content
Snippets Groups Projects
Commit 2de0b751 authored by Timo Koch's avatar Timo Koch
Browse files

[doc][common][spline] Fix typos

parent 84f54113
No related branches found
No related tags found
1 merge request!2250[common] Add inverse of monotone cubic spline
...@@ -43,7 +43,7 @@ namespace Dumux { ...@@ -43,7 +43,7 @@ namespace Dumux {
/*! /*!
* \ingroup Common * \ingroup Common
* \brief A monotone cubic spline * \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 * \note The resulting interpolation is globally monotone but only C^1
*/ */
template<class Scalar = double> template<class Scalar = double>
...@@ -57,7 +57,7 @@ public: ...@@ -57,7 +57,7 @@ public:
MonotoneCubicSpline() = default; 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 * \note if the data set is monotone, monotonicity is preserved
* \param x a vector of x-coordinates * \param x a vector of x-coordinates
* \param y a vector of y-coordinates * \param y a vector of y-coordinates
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment