This commit is contained in:
Victor Zverovich 2022-03-22 17:31:31 -07:00
parent 44abd1f483
commit 36d95c9fcc

View File

@ -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<char>
.. doxygenfunction:: operator""_a() -> detail::udl_arg<char>
.. 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<Char> &os, format_string<T...> fmt, T&&... args)
.. doxygenfunction:: print(std::ostream &os, format_string<T...> fmt, T&&... args)
.. _printf-api: