Skip to content

Commit

Permalink
Clarify that writing to memory_buffer appends (#877)
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaut committed Sep 28, 2018
1 parent e864acf commit 66992e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/fmt/format.h
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ enum { inline_buffer_size = 500 };
fmt::memory_buffer out;
format_to(out, "The answer is {}.", 42);
This will write the following output to the ``out`` object:
This will append the following output to the ``out`` object:
.. code-block:: none
Expand Down

0 comments on commit 66992e9

Please sign in to comment.