--- a/docs/Writerside/topics/json.h.md Sun Dec 14 15:41:02 2025 +0100 +++ b/docs/Writerside/topics/json.h.md Sun Dec 14 15:45:01 2025 +0100 @@ -377,11 +377,11 @@ int cxJsonWrite(void* target, const CxJsonValue* value, cx_write_func wfunc, const CxJsonWriter* settings); -cxmutstr cxJsonToString(CxJsonValue *value, - const CxAllocator *allocator); +cxmutstr cxJsonToString( + const CxAllocator *allocator, CxJsonValue *value); -cxmutstr cxJsonToPrettyString(CxJsonValue *value, - const CxAllocator *allocator); +cxmutstr cxJsonToPrettyString( + const CxAllocator *allocator, CxJsonValue *value); ``` A JSON value can be formatted with the `cxJsonWrite()` function.