Spelling fixes

This commit is contained in:
Greg Sjaardema
2020-06-23 15:11:22 -06:00
committed by Victor Zverovich
parent 613b3b459d
commit 31c3a24266

View File

@ -1525,7 +1525,7 @@ class dynamic_format_arg_store
public: public:
/** /**
\rst \rst
Adds an argument into the dynamic store for later passing to a formating Adds an argument into the dynamic store for later passing to a formatting
function. function.
Note that custom types and string types (but not string views) are copied Note that custom types and string types (but not string views) are copied
@ -1550,7 +1550,7 @@ class dynamic_format_arg_store
/** /**
\rst \rst
Adds a reference to the argument into the dynamic store for later passing to Adds a reference to the argument into the dynamic store for later passing to
a formating function. Supports named arguments wrapped in a formatting function. Supports named arguments wrapped in
``std::reference_wrapper`` via ``std::ref()``/``std::cref()``. ``std::reference_wrapper`` via ``std::ref()``/``std::cref()``.
**Example**:: **Example**::
@ -1578,7 +1578,7 @@ class dynamic_format_arg_store
} }
/** /**
Adds named argument into the dynamic store for later passing to a formating Adds named argument into the dynamic store for later passing to a formatting
function. ``std::reference_wrapper`` is supported to avoid copying of the function. ``std::reference_wrapper`` is supported to avoid copying of the
argument. argument.
*/ */