fix minor typo in doc
diff --git a/doc/C09_TutorialSparse.dox b/doc/C09_TutorialSparse.dox
index 20671f5..6a16c3a 100644
--- a/doc/C09_TutorialSparse.dox
+++ b/doc/C09_TutorialSparse.dox
@@ -211,7 +211,7 @@
 \code
 typedef Eigen::Triplet<double> T;
 std::vector<T> tripletList;
-triplets.reserve(estimation_of_entries);
+tripletList.reserve(estimation_of_entries);
 for(...)
 {
   // ...