1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-28 12:02:00 +03:00

fixed typos in comments for examples

This commit is contained in:
Dario Menendez
2015-10-02 15:57:40 +02:00
parent 0a81353989
commit 260745810d
3 changed files with 4 additions and 4 deletions

View File

@ -4,13 +4,13 @@ using namespace nlohmann;
int main()
{
// create JSON arrays
// create JSON objects
json j_no_init_list = json::object();
json j_empty_init_list = json::object({});
json j_list_of_pairs = json::object({ {"one", 1}, {"two", 2} });
//json j_invalid_list = json::object({ "one", 1 }); // would throw
// serialize the JSON arrays
// serialize the JSON objects
std::cout << j_no_init_list << '\n';
std::cout << j_empty_init_list << '\n';
std::cout << j_list_of_pairs << '\n';