aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorGravatar Chen-Pang He <jdh8@ms63.hinet.net>2012-08-29 01:56:23 +0800
committerGravatar Chen-Pang He <jdh8@ms63.hinet.net>2012-08-29 01:56:23 +0800
commitd0ee31aea6b271248cbfd9babcad3cf40acde9bb (patch)
tree44ae59f43c76cd70db1b2db48cc6bbf48909aea7 /doc
parentba4e886376382ca29b5ae6b9f31b869805ab415a (diff)
Fix dox and tabbing
Diffstat (limited to 'doc')
-rw-r--r--doc/D01_StlContainers.dox4
-rw-r--r--doc/I02_HiPerformance.dox2
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/D01_StlContainers.dox b/doc/D01_StlContainers.dox
index b5dbf0698..f55db3125 100644
--- a/doc/D01_StlContainers.dox
+++ b/doc/D01_StlContainers.dox
@@ -38,7 +38,7 @@ The situation with std::vector was even worse (explanation below) so we had to s
Here is an example:
\code
#include<Eigen/StdVector>
-\/* ... *\/
+/* ... */
std::vector<Eigen::Vector4f,Eigen::aligned_allocator<Eigen::Vector4f> >
\endcode
@@ -52,7 +52,7 @@ the compiler will compile that particular instance with the default std::allocat
Here is an example:
\code
#include<Eigen/StdVector>
-\/* ... *\/
+/* ... */
EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION(Matrix2d)
std::vector<Eigen::Vector2d>
\endcode
diff --git a/doc/I02_HiPerformance.dox b/doc/I02_HiPerformance.dox
index ac1c2ca2b..d7a02fb5c 100644
--- a/doc/I02_HiPerformance.dox
+++ b/doc/I02_HiPerformance.dox
@@ -79,7 +79,7 @@ temp = m2 * m3;
m1 += temp.adjoint(); \endcode</td>
<td>\code
m1.noalias() += m3.adjoint()
- * m2.adjoint(); \endcode</td>
+* * m2.adjoint(); \endcode</td>
<td>This is because the product expression has the EvalBeforeNesting bit which
enforces the evaluation of the product by the Tranpose expression.</td>
</tr>