From a3f762c5aabeeb54b322e1d85e009f8d873b6c85 Mon Sep 17 00:00:00 2001 From: Marek Kurdej Date: Mon, 28 Jun 2021 14:32:33 +0200 Subject: [PATCH] [doc] Minor: fix ``code``. --- include/fmt/core.h | 2 +- include/fmt/format.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/fmt/core.h b/include/fmt/core.h index 0cbfc49b..27c1ff51 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -625,7 +625,7 @@ template using char_t = typename detail::char_t_impl::type; \rst Parsing context consisting of a format string range being parsed and an argument counter for automatic indexing. - You can use the ```format_parse_context`` type alias for ``char`` instead. + You can use the ``format_parse_context`` type alias for ``char`` instead. \endrst */ template diff --git a/include/fmt/format.h b/include/fmt/format.h index 97ba0f2f..b84ee0c3 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -603,7 +603,7 @@ enum { inline_buffer_size = 500 }; A dynamically growing memory buffer for trivially copyable/constructible types with the first ``SIZE`` elements stored in the object itself. - You can use the ```memory_buffer`` type alias for ``char`` instead. + You can use the ``memory_buffer`` type alias for ``char`` instead. **Example**::