Fix markup

This commit is contained in:
Victor Zverovich 2020-04-22 09:30:09 -07:00
parent b8fbcec1be
commit 450e8eed97

View File

@ -193,14 +193,14 @@ example::
} }
}; };
Since `parse` is inherited from `formatter<string_view>` it will recognize all Since ``parse`` is inherited from ``formatter<string_view>`` it will recognize
string format specifications, for example all string format specifications, for example
.. code-block:: c++ .. code-block:: c++
fmt::format("{:>10}", color::blue) fmt::format("{:>10}", color::blue)
will return " blue". will return ``" blue"``.
You can also write a formatter for a hierarchy of classes:: You can also write a formatter for a hierarchy of classes::