docs/Writerside/topics/string.h.md

changeset 1696
976e629ce990
parent 1694
a2757c6427cc
--- 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.

mercurial