Capitalize titles

This commit is contained in:
Victor Zverovich
2019-05-18 08:56:49 -07:00
parent 91bb3aaf06
commit 28c187bcd7
4 changed files with 10 additions and 10 deletions
+6 -6
View File
@@ -218,7 +218,7 @@ Utilities
:protected-members:
:members:
System errors
System Errors
-------------
fmt does not use ``errno`` to communicate errors to the user, but it may call
@@ -235,7 +235,7 @@ the value of ``errno`` being preserved by library functions.
.. _formatstrings:
Custom allocators
Custom Allocators
-----------------
The {fmt} library supports custom dynamic memory allocators.
@@ -270,7 +270,7 @@ arguments, the container that stores pointers to them will be allocated using
the default allocator. Also floating-point formatting falls back on ``sprintf``
which may do allocations.
Custom formatting of built-in types
Custom Formatting of Built-in Types
-----------------------------------
It is possible to change the way arguments are formatted by providing a
@@ -316,7 +316,7 @@ custom argument formatter class::
.. _chrono-api:
Date and time formatting
Date and Time Formatting
========================
The library supports `strftime
@@ -334,7 +334,7 @@ The format string syntax is described in the documentation of
.. _ostream-api:
``std::ostream`` support
``std::ostream`` Support
========================
``fmt/ostream.h`` provides ``std::ostream`` support including formatting of
@@ -359,7 +359,7 @@ user-defined types that have overloaded ``operator<<``::
.. _printf-api:
``printf`` formatting
``printf`` Formatting
=====================
The header ``fmt/printf.h`` provides ``printf``-like formatting functionality.