Index: libcfa/src/collections/string.cfa
===================================================================
--- libcfa/src/collections/string.cfa	(revision 6b765d538fcf904caa5a5e705f6c9e3531d67dcc)
+++ libcfa/src/collections/string.cfa	(revision 96a11655e02a258c33fdb2c53b209dc8dd9db15f)
@@ -10,6 +10,6 @@
 // Created On       : Fri Sep 03 11:00:00 2021
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Wed Apr  2 14:12:35 2025
-// Update Count     : 295
+// Last Modified On : Thu Apr  3 21:27:08 2025
+// Update Count     : 297
 //
 
@@ -333,6 +333,6 @@
 
 string ?+?( char c, const string & s ) {
-	string ret = s;
-	ret += c;
+	string ret = c;
+	ret += s;
 	return ret;
 }
