aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorGravatar Karl Ljungkvist <quantentortilla@gmail.com>2020-10-09 07:51:36 +0000
committerGravatar Karl Ljungkvist <quantentortilla@gmail.com>2020-10-09 07:51:36 +0000
commitd199c17b14d976b4144b653d4811827efc1eb149 (patch)
tree3ed685fcf80a818e5ddc8bdeea72722f9394880a /doc
parent4091f6b25c5ad0ca3f7c00bd82bfd7ca1bbedee3 (diff)
Fix typo in Tutorial_BlockOperations_block_assignment.cpp
Diffstat (limited to 'doc')
-rw-r--r--doc/examples/Tutorial_BlockOperations_block_assignment.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/Tutorial_BlockOperations_block_assignment.cpp b/doc/examples/Tutorial_BlockOperations_block_assignment.cpp
index 76f49f2fb..0b87313a1 100644
--- a/doc/examples/Tutorial_BlockOperations_block_assignment.cpp
+++ b/doc/examples/Tutorial_BlockOperations_block_assignment.cpp
@@ -14,5 +14,5 @@ int main()
a.block<2,2>(1,1) = m;
cout << "Here is now a with m copied into its central 2x2 block:" << endl << a << endl << endl;
a.block(0,0,2,3) = a.block(2,1,2,3);
- cout << "Here is now a with bottom-right 2x3 block copied into top-left 2x2 block:" << endl << a << endl << endl;
+ cout << "Here is now a with bottom-right 2x3 block copied into top-left 2x3 block:" << endl << a << endl << endl;
}