Commit 3269fce2 authored by Victor Zverovich's avatar Victor Zverovich
parent d59fbdcd
......@@ -39,8 +39,12 @@ arguments in the resulting string.
*args* is an argument list representing arbitrary arguments.
.. _format:
.. doxygenfunction:: fmt::format(StringRef, const ArgList &)
.. _print:
.. doxygenfunction:: fmt::print(StringRef, const ArgList &)
.. doxygenfunction:: fmt::print(std::FILE *, StringRef, const ArgList &)
......@@ -101,7 +105,7 @@ System Errors
Format String Syntax
--------------------
Formatting functions such as :cpp:func:`fmt::format()` and :cpp:func:`fmt::print()`
Formatting functions such as :ref:`fmt::format() <format>` and :ref:`fmt::print() <print>`
use the same format string syntax described in this section.
Format strings contain "replacement fields" surrounded by curly braces ``{}``.
......@@ -161,9 +165,6 @@ format string to define how individual values are presented (see
:ref:`formatstrings`). Each formattable type may define how the format
specification is to be interpreted.
..
They can also be passed directly to the :func:`format` function.
Most built-in types implement the following options for format specifications,
although some of the formatting options are only supported by the numeric types.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment