Skip to content

Commit

Permalink
Fix to doc
Browse files Browse the repository at this point in the history
  • Loading branch information
danielaparker committed Nov 27, 2023
1 parent da290a1 commit c192636
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ assignees: ''

**What jsoncons library version?**

- [ ] Latest release 0.171.1
- [ ] Latest release 0.172.0
- [ ] Other release ______
- [ ] master
7 changes: 4 additions & 3 deletions doc/ref/jsonpath/basic_json_location.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,9 +227,10 @@ Output:
{
"books": [
{
"author": "Phillips, David Atlee",
"category": "memoir",
"title": "The Night Watch"
"author": "Graham Greene",
"category": "fiction",
"price": 21.99,
"title": "The Comedians"
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion test/jsonpath/src/jsonpath_expression_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,6 @@ TEST_CASE("jsonpath_expression remove")
REQUIRE(doc.at("books").size() == 1);
CHECK(doc.at("books")[0].at("title").as<std::string>() == "The Comedians");

std::cout << doc.at("books") << "\n";
std::cout << pretty_print(doc) << "\n";
}
}

0 comments on commit c192636

Please sign in to comment.