Skip to content

Commit 97f0bda

Browse files
authored
chore: fix some typos in comments (nlohmann#4345)
chore: fix some typos in comments Signed-off-by: laterlaugh <[email protected]>
1 parent c883fb0 commit 97f0bda

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/src/unit-class_parser.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -828,7 +828,7 @@ TEST_CASE("parser class")
828828
// for ranges in range of IEEE 754-2008 binary64 (double precision)
829829
// this does not accommodate 64 bit integers without loss of accuracy.
830830
// As 64 bit integers are now widely used in software, it is desirable
831-
// to expand support to to the full 64 bit (signed and unsigned) range
831+
// to expand support to the full 64 bit (signed and unsigned) range
832832
// i.e. -(2**63) -> (2**64)-1.
833833

834834
// -(2**63) ** Note: compilers see negative literals as negated positive numbers (hence the -1))

tests/src/unit-regression2.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -866,7 +866,7 @@ TEST_CASE("regression tests 2")
866866
CHECK(j.dump() == "[1,4]");
867867
}
868868

869-
SECTION("issue #3343 - json and ordered_json are not interchangable")
869+
SECTION("issue #3343 - json and ordered_json are not interchangeable")
870870
{
871871
json::object_t jobj({ { "product", "one" } });
872872
ordered_json::object_t ojobj({{"product", "one"}});

0 commit comments

Comments
 (0)