From d03bbcbcbc3fcc7209e61c1e6205ebfcda1a1ebf Mon Sep 17 00:00:00 2001 From: Thomas Capricelli Date: Thu, 23 Jun 2011 00:34:30 +0200 Subject: [PATCH] fix typo in doc for ParametrizedLine --- Eigen/src/Geometry/ParametrizedLine.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eigen/src/Geometry/ParametrizedLine.h b/Eigen/src/Geometry/ParametrizedLine.h index edad5f8ee..1475802ab 100644 --- a/Eigen/src/Geometry/ParametrizedLine.h +++ b/Eigen/src/Geometry/ParametrizedLine.h @@ -34,7 +34,7 @@ * * A parametrized line is defined by an origin point \f$ \mathbf{o} \f$ and a unit * direction vector \f$ \mathbf{d} \f$ such that the line corresponds to - * the set \f$ l(t) = \mathbf{o} + t \mathbf{d} \f$, \f$ l \in \mathbf{R} \f$. + * the set \f$ l(t) = \mathbf{o} + t \mathbf{d} \f$, \f$ t \in \mathbf{R} \f$. * * \param _Scalar the scalar type, i.e., the type of the coefficients * \param _AmbientDim the dimension of the ambient space, can be a compile time value or Dynamic.