From cae9bf45b964655c240f1fac23d5df30c54add15 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Wed, 25 Jan 2023 09:32:03 +1300 Subject: [PATCH] Simplify apidoc comments --- include/fmt/core.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/include/fmt/core.h b/include/fmt/core.h index 8942ad3e..6d0bead8 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -3010,14 +3010,8 @@ FMT_INLINE void print(std::FILE* f, format_string fmt, T&&... args) { } /** - \rst Formats ``args`` according to specifications in ``fmt`` and writes the output to the file ``f`` followed by a newline. - - **Example**:: - - fmt::println(stderr, "Don't {}!", "panic"); - \endrst */ template FMT_INLINE void println(std::FILE* f, format_string fmt, T&&... args) { @@ -3025,14 +3019,8 @@ FMT_INLINE void println(std::FILE* f, format_string fmt, T&&... args) { } /** - \rst Formats ``args`` according to specifications in ``fmt`` and writes the output to ``stdout`` followed by a newline. - - **Example**:: - - fmt::println("Elapsed time: {0:.2f} seconds", 1.23); - \endrst */ template FMT_INLINE void println(format_string fmt, T&&... args) {