aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2012-09-26 19:24:41 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2012-09-26 19:24:41 +0200
commit1edb396542e7fc2275e8e2acd80b85cfad8cf64e (patch)
treedbfc240402eceb420ac70f919abc919cc961e6de /doc
parent357fe3641d696b0d7b878ca2d4e1b45639dff5f8 (diff)
fix minor typo in doc
Diffstat (limited to 'doc')
-rw-r--r--doc/C09_TutorialSparse.dox2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/C09_TutorialSparse.dox b/doc/C09_TutorialSparse.dox
index 20671f57b..6a16c3ae2 100644
--- a/doc/C09_TutorialSparse.dox
+++ b/doc/C09_TutorialSparse.dox
@@ -211,7 +211,7 @@ Here is a typical usage example:
\code
typedef Eigen::Triplet<double> T;
std::vector<T> tripletList;
-triplets.reserve(estimation_of_entries);
+tripletList.reserve(estimation_of_entries);
for(...)
{
// ...