From 39ac57fa6ddf9a74d9a6cc213293914d2e05ec31 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Mon, 4 Jan 2010 21:24:43 -0500 Subject: Big renaming: start ---> head end ---> tail Much frustration with sed syntax. Need to learn perl some day. --- doc/snippets/MatrixBase_end_int.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/snippets/MatrixBase_end_int.cpp') diff --git a/doc/snippets/MatrixBase_end_int.cpp b/doc/snippets/MatrixBase_end_int.cpp index aaa54b668..03c54a931 100644 --- a/doc/snippets/MatrixBase_end_int.cpp +++ b/doc/snippets/MatrixBase_end_int.cpp @@ -1,5 +1,5 @@ RowVector4i v = RowVector4i::Random(); cout << "Here is the vector v:" << endl << v << endl; -cout << "Here is v.end(2):" << endl << v.end(2) << endl; -v.end(2).setZero(); +cout << "Here is v.tail(2):" << endl << v.tail(2) << endl; +v.tail(2).setZero(); cout << "Now the vector v is:" << endl << v << endl; -- cgit v1.2.3