# HG changeset patch # User Mike Becker # Date 1765041208 -3600 # Node ID 19874e6062351bf83f20498af248421ab6329d15 # Parent 72ad8a78378a9801929a0f77e334a0be4ff5f9a9 fix the example in json.h.md after removing the sort_members flag diff -r 72ad8a78378a -r 19874e606235 docs/Writerside/topics/json.h.md --- a/docs/Writerside/topics/json.h.md Sat Dec 06 18:01:52 2025 +0100 +++ b/docs/Writerside/topics/json.h.md Sat Dec 06 18:13:28 2025 +0100 @@ -298,19 +298,19 @@ { "bool": false, "int": 47, + "strings": ["hello", "world"], "nested": { - "floats": [3.1415, 47.11, 8.15], - "ints": [4, 8, 15, [16, 23], 42], - "literals": [true, null, false], "objects": [{ "name1": 1, "name2": 3 }, { - "name1": 3, - "name2": 7 - }] - }, - "strings": ["hello", "world"] + "name2": 7, + "name1": 3 + }], + "floats": [3.1415, 47.11, 8.15], + "literals": [true, null, false], + "ints": [4, 8, 15, [16, 23], 42] + } } ```