Index: libcfa/src/collections/string.cfa
===================================================================
--- libcfa/src/collections/string.cfa	(revision 714e206b23010557aa615a3de3cf8f06a0371d07)
+++ libcfa/src/collections/string.cfa	(revision fbe3f03e6d4108c04b7ad01b9544077826dea88c)
@@ -10,6 +10,6 @@
 // Created On       : Fri Sep 03 11:00:00 2021
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Wed Feb  7 21:17:06 2024
-// Update Count     : 259
+// Last Modified On : Mon Apr 15 21:56:28 2024
+// Update Count     : 260
 //
 
@@ -198,6 +198,5 @@
 	cstr[len] = '\0';									// terminate
 	_Ostream_Manip(const char *) cf @= { cstr, f.wd, f.pc, f.base, {f.all} };
-	os | cf | nonl;
-	return os;
+	return os | cf | nonl;
 } // ?|?
 
Index: libcfa/src/collections/string_res.cfa
===================================================================
--- libcfa/src/collections/string_res.cfa	(revision 714e206b23010557aa615a3de3cf8f06a0371d07)
+++ libcfa/src/collections/string_res.cfa	(revision fbe3f03e6d4108c04b7ad01b9544077826dea88c)
@@ -10,6 +10,6 @@
 // Created On       : Fri Sep 03 11:00:00 2021
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Sat Feb 10 17:47:22 2024
-// Update Count     : 83
+// Last Modified On : Mon Apr 15 21:56:27 2024
+// Update Count     : 85
 //
 
@@ -200,6 +200,5 @@
 ofstream & ?|?(ofstream & out, const string_res & s) {
 	// CFA string is NOT null terminated, so print exactly lnth characters in a minimum width of 0.
-	out | wd( 0, s.Handle.lnth, s.Handle.s ) | nonl;
-	return out;
+	return out | wd( 0, s.Handle.lnth, s.Handle.s ) | nonl;
 }
 
