From 2b2cfdac1929b2c10a83cdff3884e4d974f4aac3 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Wed, 28 Nov 2018 12:53:09 -0800 Subject: [PATCH] Update docs --- doc/api.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/api.rst b/doc/api.rst index 90cfd744..861594ec 100644 --- a/doc/api.rst +++ b/doc/api.rst @@ -184,7 +184,7 @@ output ``operator<<`` when one is defined for a user-defined type. Output iterator support ----------------------- -.. doxygenfunction:: fmt::format_to(OutputIt, const S&, const Args&...) +.. doxygenfunction:: fmt::format_to(OutputIt, const S &, const Args &...) .. doxygenfunction:: fmt::format_to_n(OutputIt, std::size_t, string_view, const Args&...) .. doxygenstruct:: fmt::format_to_n_result :members: @@ -350,7 +350,7 @@ user-defined types that have overloaded ``operator<<``:: std::string s = fmt::format("The date is {}", date(2012, 12, 9)); // s == "The date is 2012-12-9" -.. doxygenfunction:: print(std::ostream&, const S&, const Args&...) +.. doxygenfunction:: print(std::basic_ostream>&, const S&, const Args&...) .. _printf-api: @@ -368,6 +368,6 @@ argument type doesn't match its format specification. .. doxygenfunction:: fprintf(std::FILE *, const S&, const Args&...) -.. doxygenfunction:: fprintf(std::ostream&, const S&, const Args&...) +.. doxygenfunction:: fprintf(std::basic_ostream>&, const S&, const Args&...) .. doxygenfunction:: sprintf(const S&, const Args&...)