From 8308f52c2aaddbe08f9ed20e4ce9f46f6bc29e3f Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Mon, 15 Mar 2021 07:10:28 -0700 Subject: [PATCH] Fix dynamic_format_arg_store::push_back comment --- include/fmt/args.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/args.h b/include/fmt/args.h index b55fbdb7..0fe75932 100644 --- a/include/fmt/args.h +++ b/include/fmt/args.h @@ -190,7 +190,7 @@ class dynamic_format_arg_store /** Adds named argument into the dynamic store for later passing to a formatting function. ``std::reference_wrapper`` is supported to avoid copying of the - argument. The name is always stored by reference. + argument. The name is always copied into the store. */ template void push_back(const detail::named_arg& arg) {