From 36d95c9fcc0d807de59251186628caf79a26653d Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Tue, 22 Mar 2022 17:31:31 -0700 Subject: [PATCH] Fix docs --- doc/api.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api.rst b/doc/api.rst index d8e6ea65..a5532d3a 100644 --- a/doc/api.rst +++ b/doc/api.rst @@ -309,7 +309,7 @@ The following user-defined literals are defined in ``fmt/format.h``. .. doxygenfunction:: operator""_format(const char *s, size_t n) -> detail::udl_formatter -.. doxygenfunction:: operator""_a() -> detail::udl_arg +.. doxygenfunction:: operator""_a() -> detail::udl_arg Utilities --------- @@ -516,7 +516,7 @@ In order to make a type formattable via ``std::ostream`` you should provide a std::string s = fmt::format("The date is {}", date(2012, 12, 9)); // s == "The date is 2012-12-9" -.. doxygenfunction:: print(std::basic_ostream &os, format_string fmt, T&&... args) +.. doxygenfunction:: print(std::ostream &os, format_string fmt, T&&... args) .. _printf-api: