@@ -5142,7 +5142,7 @@ auto input_adapter(T (&array)[N]) -> decltype(input_adapter(array, array + N))
5142
5142
}
5143
5143
5144
5144
// This class only handles inputs of input_buffer_adapter type.
5145
- // It's required so that expressions like {ptr, len} can be implicitely casted
5145
+ // It's required so that expressions like {ptr, len} can be implicitly casted
5146
5146
// to the correct adapter.
5147
5147
class span_input_adapter
5148
5148
{
@@ -9916,7 +9916,7 @@ class binary_reader
9916
9916
9917
9917
@return whether conversion completed
9918
9918
9919
- @note This function needs to respect the system's endianess , because
9919
+ @note This function needs to respect the system's endianness , because
9920
9920
bytes in CBOR, MessagePack, and UBJSON are stored in network order
9921
9921
(big endian) and therefore need reordering on little endian systems.
9922
9922
*/
@@ -10088,7 +10088,7 @@ class binary_reader
10088
10088
/// the number of characters read
10089
10089
std::size_t chars_read = 0;
10090
10090
10091
- /// whether we can assume little endianess
10091
+ /// whether we can assume little endianness
10092
10092
const bool is_little_endian = little_endianess();
10093
10093
10094
10094
/// the SAX parser
@@ -14227,7 +14227,7 @@ class binary_writer
14227
14227
@tparam OutputIsLittleEndian Set to true if output data is
14228
14228
required to be little endian
14229
14229
14230
- @note This function needs to respect the system's endianess , because bytes
14230
+ @note This function needs to respect the system's endianness , because bytes
14231
14231
in CBOR, MessagePack, and UBJSON are stored in network order (big
14232
14232
endian) and therefore need reordering on little endian systems.
14233
14233
*/
@@ -14310,7 +14310,7 @@ class binary_writer
14310
14310
}
14311
14311
14312
14312
private:
14313
- /// whether we can assume little endianess
14313
+ /// whether we can assume little endianness
14314
14314
const bool is_little_endian = little_endianess();
14315
14315
14316
14316
/// the output
@@ -21337,7 +21337,7 @@ class basic_json
21337
21337
`key()` returns an empty string.
21338
21338
21339
21339
@warning Using `items()` on temporary objects is dangerous. Make sure the
21340
- object's lifetime exeeds the iteration. See
21340
+ object's lifetime exceeds the iteration. See
21341
21341
<https://github.com/nlohmann/json/issues/2040> for more
21342
21342
information.
21343
21343
0 commit comments