Skip to content

Commit

Permalink
Fix syntax error detected in quickbook 1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
igaztanaga committed Mar 17, 2024
1 parent d34122e commit 08f16be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/move.qbk
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ provided with this library. With regular iterator classes,

while (first != last) *result++ = *first++;

causes a range [first,last) to be copied into a range starting with result. The same code with
causes a range `[first,last)` to be copied into a range starting with result. The same code with
result being a move insert iterator will move insert corresponding elements into the container.
This device allows all of the copying algorithms in the library to work in the move insert mode
instead of the regular overwrite mode. This library offers 3 move insert iterators and their
Expand Down

0 comments on commit 08f16be

Please sign in to comment.