diff --git a/doc/mkdocs/docs/api/basic_json/operator_ValueType.md b/doc/mkdocs/docs/api/basic_json/operator_ValueType.md index 7d14c5061..787588781 100644 --- a/doc/mkdocs/docs/api/basic_json/operator_ValueType.md +++ b/doc/mkdocs/docs/api/basic_json/operator_ValueType.md @@ -29,7 +29,7 @@ Linear in the size of the JSON value. !!! note "Definition of `JSON_EXPLICIT`" - By default `JSON_EXPLICIT` defined to the empty string, so the signature is: + By default `JSON_EXPLICIT` is defined to the empty string, so the signature is: ```cpp template @@ -53,15 +53,15 @@ Linear in the size of the JSON value. `JSON_EXPLICIT` will be set to `#!cpp explicit` by default. You can prepare existing code by already defining - [`JSON_USE_IMPLICIT_CONVERSIONS`](../macros/json_use_implicit_conversions.md) to `0` and adjust any implicit - conversions by calls to [`get`](../basic_json/get.md). + [`JSON_USE_IMPLICIT_CONVERSIONS`](../macros/json_use_implicit_conversions.md) to `0` and replace any implicit + conversions with calls to [`get`](../basic_json/get.md). ## Examples ??? example - The example below shows several conversions from JSON values to other types. There a few things to note: (1) + The example below shows several conversions from JSON values to other types. There are a few things to note: (1) Floating-point numbers can be converted to integers, (2) A JSON array can be converted to a standard `std::vector`, (3) A JSON object can be converted to C++ associative containers such as `std::unordered_map`. diff --git a/doc/mkdocs/docs/api/macros/json_use_implicit_conversions.md b/doc/mkdocs/docs/api/macros/json_use_implicit_conversions.md index c38d583a5..3b616a183 100644 --- a/doc/mkdocs/docs/api/macros/json_use_implicit_conversions.md +++ b/doc/mkdocs/docs/api/macros/json_use_implicit_conversions.md @@ -24,8 +24,8 @@ By default, implicit conversions are enabled. Implicit conversions will be switched off by default in the next major release of the library. - You can prepare existing code by already defining `JSON_USE_IMPLICIT_CONVERSIONS` to `0` and adjust any implicit - conversions by calls to [`get`](../basic_json/get.md). + You can prepare existing code by already defining `JSON_USE_IMPLICIT_CONVERSIONS` to `0` and replace any implicit + conversions with calls to [`get`](../basic_json/get.md). ## Examples