1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-29 23:01:16 +03:00

Updated comments as requested.

This commit is contained in:
Anthony VH
2021-01-23 18:24:47 +01:00
parent 6eb37e9b78
commit 848927ae90
4 changed files with 7 additions and 4 deletions

View File

@ -20,7 +20,7 @@ struct adl_serializer
This function is usually called by the `get()` function of the
@ref basic_json class (either explicit or via conversion operators).
@note This function is chosen for value types which can be default constructed.
@note This function is chosen for default-constructible value types.
@param[in] j JSON value to read from
@param[in,out] val value to write to
@ -39,7 +39,7 @@ struct adl_serializer
This function is usually called by the `get()` function of the
@ref basic_json class (either explicit or via conversion operators).
@note This function is chosen for value types which can not be default constructed.
@note This function is chosen for value types which are not default-constructible.
@param[in] j JSON value to read from