Skip to content

Commit f27d79c

Browse files
authored
Review Firestore third party files (#13391)
1 parent 29a737f commit f27d79c

File tree

1 file changed

+6
-6
lines changed
  • Firestore/third_party/nlohmann_json

1 file changed

+6
-6
lines changed

Firestore/third_party/nlohmann_json/json.hpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5142,7 +5142,7 @@ auto input_adapter(T (&array)[N]) -> decltype(input_adapter(array, array + N))
51425142
}
51435143

51445144
// 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
51465146
// to the correct adapter.
51475147
class span_input_adapter
51485148
{
@@ -9916,7 +9916,7 @@ class binary_reader
99169916

99179917
@return whether conversion completed
99189918

9919-
@note This function needs to respect the system's endianess, because
9919+
@note This function needs to respect the system's endianness, because
99209920
bytes in CBOR, MessagePack, and UBJSON are stored in network order
99219921
(big endian) and therefore need reordering on little endian systems.
99229922
*/
@@ -10088,7 +10088,7 @@ class binary_reader
1008810088
/// the number of characters read
1008910089
std::size_t chars_read = 0;
1009010090

10091-
/// whether we can assume little endianess
10091+
/// whether we can assume little endianness
1009210092
const bool is_little_endian = little_endianess();
1009310093

1009410094
/// the SAX parser
@@ -14227,7 +14227,7 @@ class binary_writer
1422714227
@tparam OutputIsLittleEndian Set to true if output data is
1422814228
required to be little endian
1422914229

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
1423114231
in CBOR, MessagePack, and UBJSON are stored in network order (big
1423214232
endian) and therefore need reordering on little endian systems.
1423314233
*/
@@ -14310,7 +14310,7 @@ class binary_writer
1431014310
}
1431114311

1431214312
private:
14313-
/// whether we can assume little endianess
14313+
/// whether we can assume little endianness
1431414314
const bool is_little_endian = little_endianess();
1431514315

1431614316
/// the output
@@ -21337,7 +21337,7 @@ class basic_json
2133721337
`key()` returns an empty string.
2133821338

2133921339
@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
2134121341
<https://github.com/nlohmann/json/issues/2040> for more
2134221342
information.
2134321343

0 commit comments

Comments
 (0)