Skip to content

Commit

Permalink
Fix typo in Tutorial_BlockOperations_block_assignment.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
kalj committed Oct 9, 2020
1 parent 4091f6b commit d199c17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/examples/Tutorial_BlockOperations_block_assignment.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit d199c17

Please sign in to comment.