From 66992e90d2c1670dec92993788925d18ba1b71f3 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Fri, 28 Sep 2018 06:22:12 -0700 Subject: [PATCH] Clarify that writing to memory_buffer appends (#877) --- include/fmt/format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/format.h b/include/fmt/format.h index 62e1799d..46168cbe 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -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