diff options
author | Gael Guennebaud <g.gael@free.fr> | 2017-02-21 17:10:55 +0100 |
---|---|---|
committer | Gael Guennebaud <g.gael@free.fr> | 2017-02-21 17:10:55 +0100 |
commit | 5c68ba41a8b5fab7a742d786a12e7b3b92119b3e (patch) | |
tree | f2e3446e59f828e4ad53c03d96911227ed62a244 /doc | |
parent | b0f55ef85a900a130fe244a0baacd0247db0cb3b (diff) |
typos
Diffstat (limited to 'doc')
-rw-r--r-- | doc/snippets/MatrixBase_reshaped_auto.cpp | 4 | ||||
-rw-r--r-- | doc/snippets/MatrixBase_reshaped_fixed.cpp | 2 | ||||
-rw-r--r-- | doc/snippets/MatrixBase_reshaped_int_int.cpp | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/doc/snippets/MatrixBase_reshaped_auto.cpp b/doc/snippets/MatrixBase_reshaped_auto.cpp index 8f02ae893..2adf321f3 100644 --- a/doc/snippets/MatrixBase_reshaped_auto.cpp +++ b/doc/snippets/MatrixBase_reshaped_auto.cpp @@ -1,4 +1,4 @@ Matrix4i m = Matrix4i::Random(); cout << "Here is the matrix m:" << endl << m << endl; -cout << "Here is m.reshape(2, AutoSize):" << endl << m.reshaped(2, AutoSize) << endl; -cout << "Here is m.reshape(AutoSize, fix<8>, RowOrder):" << endl << m.reshaped(AutoSize, fix<8>, RowOrder) << endl; +cout << "Here is m.reshaped(2, AutoSize):" << endl << m.reshaped(2, AutoSize) << endl; +cout << "Here is m.reshaped(AutoSize, fix<8>, RowOrder):" << endl << m.reshaped(AutoSize, fix<8>, RowOrder) << endl; diff --git a/doc/snippets/MatrixBase_reshaped_fixed.cpp b/doc/snippets/MatrixBase_reshaped_fixed.cpp index a268ee5ae..3e9e2cfb6 100644 --- a/doc/snippets/MatrixBase_reshaped_fixed.cpp +++ b/doc/snippets/MatrixBase_reshaped_fixed.cpp @@ -1,3 +1,3 @@ Matrix4i m = Matrix4i::Random(); cout << "Here is the matrix m:" << endl << m << endl; -cout << "Here is m.reshape(fix<2>,fix<8>):" << endl << m.reshaped(fix<2>,fix<8>) << endl; +cout << "Here is m.reshaped(fix<2>,fix<8>):" << endl << m.reshaped(fix<2>,fix<8>) << endl; diff --git a/doc/snippets/MatrixBase_reshaped_int_int.cpp b/doc/snippets/MatrixBase_reshaped_int_int.cpp index 4486d8347..af4ca592f 100644 --- a/doc/snippets/MatrixBase_reshaped_int_int.cpp +++ b/doc/snippets/MatrixBase_reshaped_int_int.cpp @@ -1,3 +1,3 @@ Matrix4i m = Matrix4i::Random(); cout << "Here is the matrix m:" << endl << m << endl; -cout << "Here is m.reshape(2, 8):" << endl << m.reshaped(2, 8) << endl; +cout << "Here is m.reshaped(2, 8):" << endl << m.reshaped(2, 8) << endl; |