diff -r d21cec66facc -r 976e629ce990 docs/Writerside/topics/string.h.md --- a/docs/Writerside/topics/string.h.md Wed Dec 31 16:05:38 2025 +0100 +++ b/docs/Writerside/topics/string.h.md Wed Dec 31 16:18:48 2025 +0100 @@ -145,8 +145,11 @@ Example usage: ```C -cxmutstr str = cx_strcat(CX_NULLSTR, 2, - cx_str("Hello, "), cx_str("World!")); +cxmutstr str = cx_strcat( + CX_NULLSTR, 2, + cx_str("Hello, "), + cx_str("World!") +); ``` The function `cx_strlen()` sums the length of the specified strings.