aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2012-07-05 13:56:28 +0100
committerGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2012-07-05 13:56:28 +0100
commit60edf02f6f0698a910b330c387108f4c34ae1e74 (patch)
tree01acced39726cf2e6cbe6515c16b184915590ee1 /doc
parent37d5825c5af433f261da0cc4c114a1499245fcae (diff)
doc: Typo in CustomizingEigen, introduced in previous commit.
Thanks to Christoph Hertzberg for noting this.
Diffstat (limited to 'doc')
-rw-r--r--doc/I00_CustomizingEigen.dox2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/I00_CustomizingEigen.dox b/doc/I00_CustomizingEigen.dox
index 43ac8509a..aa4514d68 100644
--- a/doc/I00_CustomizingEigen.dox
+++ b/doc/I00_CustomizingEigen.dox
@@ -97,7 +97,7 @@ public:
// This constructor allows you to construct MyVectorType from Eigen expressions
template<typename OtherDerived>
- Vector3D(const Eigen::MatrixBase<OtherDerived>& other)
+ MyVectorType(const Eigen::MatrixBase<OtherDerived>& other)
: Eigen::Vector3d(other)
{ }