1
0
mirror of https://github.com/fmtlib/fmt.git synced 2025-01-30 15:32:36 +00:00

[doc] Minor: fix `code`.

This commit is contained in:
Marek Kurdej 2021-06-28 14:32:33 +02:00 committed by Victor Zverovich
parent c3c27e5ab5
commit a3f762c5aa
2 changed files with 2 additions and 2 deletions
include/fmt

@ -625,7 +625,7 @@ template <typename S> using char_t = typename detail::char_t_impl<S>::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 <typename Char, typename ErrorHandler = detail::error_handler>

@ -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**::