fix typos (oops)

This commit is contained in:
Gael Guennebaud
2010-06-02 17:56:35 +02:00
parent 8710bd23e7
commit 9ff0d67156
2 changed files with 6 additions and 6 deletions

View File

@@ -148,10 +148,10 @@ class DynamicSparseMatrix
* - the nonzero does not already exist
* - the new coefficient is the last one of the given inner vector.
*
* \sa insert, insertBackByInnerOuter */
* \sa insert, insertBackByOuterInner */
inline Scalar& insertBack(Index row, Index col)
{
return insertBackByInnerOuter(IsRowMajor?row:col, IsRowMajor?col:row);
return insertBackByOuterInner(IsRowMajor?row:col, IsRowMajor?col:row);
}
/** \sa insertBack */