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