aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/src/Splines
diff options
context:
space:
mode:
authorGravatar Hauke Heibel <hauke.heibel@gmail.com>2016-01-25 22:17:52 +0100
committerGravatar Hauke Heibel <hauke.heibel@gmail.com>2016-01-25 22:17:52 +0100
commit5eb2790be093cc23d4c4808b5c53d79eba22ecb0 (patch)
tree4682eeefae7288b94e3ca850b25906609d9c8c13 /unsupported/Eigen/src/Splines
parent8328caa618731fb2a5802daaf8088db4175567a2 (diff)
Fixed minor typo in SplineFitting.
Diffstat (limited to 'unsupported/Eigen/src/Splines')
-rw-r--r--unsupported/Eigen/src/Splines/SplineFitting.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/unsupported/Eigen/src/Splines/SplineFitting.h b/unsupported/Eigen/src/Splines/SplineFitting.h
index d3c245fa9..8e6a5aaed 100644
--- a/unsupported/Eigen/src/Splines/SplineFitting.h
+++ b/unsupported/Eigen/src/Splines/SplineFitting.h
@@ -167,7 +167,7 @@ namespace Eigen
derivativeKnots.data(), derivativeKnots.data() + derivativeKnots.size(),
temporaryKnots.data());
- // Number of control points (one for each point and derivative) plus spline order.
+ // Number of knots (one for each point and derivative) plus spline order.
DenseIndex numKnots = numParameters + numDerivatives + degree + 1;
knots.resize(numKnots);