Sat, 06 Dec 2025 18:13:28 +0100
fix the example in json.h.md after removing the sort_members flag
| docs/Writerside/topics/json.h.md | file | annotate | diff | comparison | revisions |
--- 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] + } } ```