Clarify that writing to memory_buffer appends (#877)

This commit is contained in:
Victor Zverovich 2018-09-28 06:22:12 -07:00
parent e864acfdbd
commit 66992e90d2

View File

@ -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