From b18f9427a82fcc6b74f874c45039181ded06c9f8 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Thu, 4 Jul 2013 06:49:24 +0200 Subject: [PATCH] Fix bug in sparse documentation. (transplanted from 4020d4286f0e4b40decbe825ffb2e8482daac85f ) --- doc/C09_TutorialSparse.dox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/C09_TutorialSparse.dox b/doc/C09_TutorialSparse.dox index 34154bd0d..94efec490 100644 --- a/doc/C09_TutorialSparse.dox +++ b/doc/C09_TutorialSparse.dox @@ -130,7 +130,7 @@ Describing the \a buildProblem and \a save functions is out of the scope of this The SparseMatrix and SparseVector classes take three template arguments: * the scalar type (e.g., double) - * the storage order (ColMajor or RowMajor, the default is RowMajor) + * the storage order (ColMajor or RowMajor, the default is ColMajor) * the inner index type (default is \c int). As for dense Matrix objects, constructors takes the size of the object.