From dd423621a3a020f35f9ffca00af3db423541397e 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 0cbfc49b1b7c..27c1ff5104b1 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 22bb4b5bbcd6..ffba176ebb0d 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**::