Skip to content

Commit

Permalink
chore: fix some typos in comments (#4345)
Browse files Browse the repository at this point in the history
chore: fix some typos in comments

Signed-off-by: laterlaugh <[email protected]>
  • Loading branch information
laterlaugh committed Apr 12, 2024
1 parent c883fb0 commit 97f0bda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/src/unit-class_parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -828,7 +828,7 @@ TEST_CASE("parser class")
// for ranges in range of IEEE 754-2008 binary64 (double precision)
// this does not accommodate 64 bit integers without loss of accuracy.
// As 64 bit integers are now widely used in software, it is desirable
// to expand support to to the full 64 bit (signed and unsigned) range
// to expand support to the full 64 bit (signed and unsigned) range
// i.e. -(2**63) -> (2**64)-1.

// -(2**63) ** Note: compilers see negative literals as negated positive numbers (hence the -1))
Expand Down
2 changes: 1 addition & 1 deletion tests/src/unit-regression2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -866,7 +866,7 @@ TEST_CASE("regression tests 2")
CHECK(j.dump() == "[1,4]");
}

SECTION("issue #3343 - json and ordered_json are not interchangable")
SECTION("issue #3343 - json and ordered_json are not interchangeable")
{
json::object_t jobj({ { "product", "one" } });
ordered_json::object_t ojobj({{"product", "one"}});
Expand Down

0 comments on commit 97f0bda

Please sign in to comment.