diff options
author | Jitse Niesen <jitse@maths.leeds.ac.uk> | 2010-08-23 11:44:51 +0100 |
---|---|---|
committer | Jitse Niesen <jitse@maths.leeds.ac.uk> | 2010-08-23 11:44:51 +0100 |
commit | d1111d625ccfc29a4b4a0db0192cbf6e2fdedf3c (patch) | |
tree | 255abce1067301dd2a5e2366948928365df841d3 /Eigen/src/plugins | |
parent | 103b9351fdbf3ea440b718a13f40eb17928afaaa (diff) |
Docs: Typos in ArrayBase doxygen comments
Diffstat (limited to 'Eigen/src/plugins')
-rw-r--r-- | Eigen/src/plugins/CommonCwiseBinaryOps.h | 2 | ||||
-rw-r--r-- | Eigen/src/plugins/CommonCwiseUnaryOps.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Eigen/src/plugins/CommonCwiseBinaryOps.h b/Eigen/src/plugins/CommonCwiseBinaryOps.h index b773e85db..bb0b17c09 100644 --- a/Eigen/src/plugins/CommonCwiseBinaryOps.h +++ b/Eigen/src/plugins/CommonCwiseBinaryOps.h @@ -50,7 +50,7 @@ EIGEN_MAKE_CWISE_BINARY_OP(operator+,ei_scalar_sum_op) * \include class_CwiseBinaryOp.cpp * Output: \verbinclude class_CwiseBinaryOp.out * - * \sa class CwiseBinaryOp, operator+, operator-, cwiseProduct + * \sa class CwiseBinaryOp, operator+(), operator-(), cwiseProduct() */ template<typename CustomBinaryOp, typename OtherDerived> EIGEN_STRONG_INLINE const CwiseBinaryOp<CustomBinaryOp, Derived, OtherDerived> diff --git a/Eigen/src/plugins/CommonCwiseUnaryOps.h b/Eigen/src/plugins/CommonCwiseUnaryOps.h index bfb7cc087..c16b177d8 100644 --- a/Eigen/src/plugins/CommonCwiseUnaryOps.h +++ b/Eigen/src/plugins/CommonCwiseUnaryOps.h @@ -139,7 +139,7 @@ imag() const { return derived(); } * \include class_CwiseUnaryOp.cpp * Output: \verbinclude class_CwiseUnaryOp.out * - * \sa class CwiseUnaryOp, class CwiseBinarOp + * \sa class CwiseUnaryOp, class CwiseBinaryOp */ template<typename CustomUnaryOp> inline const CwiseUnaryOp<CustomUnaryOp, Derived> @@ -157,7 +157,7 @@ unaryExpr(const CustomUnaryOp& func = CustomUnaryOp()) const * \include class_CwiseUnaryOp.cpp * Output: \verbinclude class_CwiseUnaryOp.out * - * \sa class CwiseUnaryOp, class CwiseBinarOp + * \sa class CwiseUnaryOp, class CwiseBinaryOp */ template<typename CustomViewOp> inline const CwiseUnaryView<CustomViewOp, Derived> |