Typo in docs for DenseBase::Constant()
Not sure where docs are located, so i created an issue instead.
There is a typo in the descriptions for both link and link:
template<typename Derived>
const DenseBase<Derived>::ConstantReturnType Eigen::DenseBase<Derived>::Constant(Index rows, Index cols, const Scalar& value)
template<typename Derived>
const DenseBase<Derived>::ConstantReturnType Eigen::DenseBase<Derived>::Constant(Index size, const Scalar& value)
The description says:
For fixed-size types, it is redundant to pass ... Zero() should be used instead.
I think instead of Zero() there should be a link to Constant(const Scalar&)