#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Thu, 15 Mar 2018 22:43:45 +0100
changeset 6296 7d5714c65387
parent 6295 408d5ea999ac
child 6297 d664b5423622
#DOCUMENTATION by cg class: TextCollector comment/format in: #printf: #printf:arguments: #printf:with: #printf:with:with: #printf:with:with:with: #printf:with:with:with:with: #printf:with:with:with:with:with: #printf:withAll:
TextCollector.st
--- a/TextCollector.st	Thu Mar 15 12:33:59 2018 +0100
+++ b/TextCollector.st	Thu Mar 15 22:43:45 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1989 by Claus Gittinger
 	      All Rights Reserved
@@ -887,7 +889,9 @@
 !
 
 printf:formatSpec
-    "convenient C-style formatted printing"
+    "convenient C-style formatted printing.
+     For smalltalk specific formats, 
+     see documentation in PrintfScanf >> format_printf"
 
     ^ entryStream printf:formatSpec
 
@@ -900,7 +904,9 @@
 
 printf:formatSpec arguments:args
     "convenient C-style formatted printing with an arbitrary number of arguments.
-     Same as printf:withAll:, for protocol completeness"
+     Same as printf:withAll:, for protocol completeness.
+     For smalltalk specific formats, 
+     see documentation in PrintfScanf >> format_printf"
 
     ^ entryStream printf:formatSpec withAll:args
 
@@ -916,7 +922,9 @@
 !
 
 printf:formatSpec with:arg1
-    "convenient C-style formatted printing with 1 argument"
+    "convenient C-style formatted printing with 1 argument.
+     For smalltalk specific formats, 
+     see documentation in PrintfScanf >> format_printf"
 
     ^ entryStream printf:formatSpec with:arg1
 
@@ -928,7 +936,9 @@
 !
 
 printf:formatSpec with:arg1 with:arg2
-    "convenient C-style formatted printing with 2 arguments"
+    "convenient C-style formatted printing with 2 arguments.
+     For smalltalk specific formats, 
+     see documentation in PrintfScanf >> format_printf"
 
     ^ entryStream printf:formatSpec with:arg1 with:arg2
 
@@ -941,7 +951,9 @@
 !
 
 printf:formatSpec with:arg1 with:arg2 with:arg3
-    "convenient C-style formatted printing with 3 arguments"
+    "convenient C-style formatted printing with 3 arguments.
+     For smalltalk specific formats, 
+     see documentation in PrintfScanf >> format_printf"
 
     ^ entryStream printf:formatSpec with:arg1 with:arg2 with:arg3
 
@@ -954,7 +966,9 @@
 !
 
 printf:formatSpec with:arg1 with:arg2 with:arg3 with:arg4
-    "convenient C-style formatted printing"
+    "convenient C-style formatted printing.
+     For smalltalk specific formats, 
+     see documentation in PrintfScanf >> format_printf"
 
     ^ entryStream printf:formatSpec with:arg1 with:arg2 with:arg3 with:arg4
 
@@ -967,7 +981,9 @@
 !
 
 printf:formatSpec with:arg1 with:arg2 with:arg3 with:arg4 with:arg5
-    "convenient C-style formatted printing"
+    "convenient C-style formatted printing.
+     For smalltalk specific formats, 
+     see documentation in PrintfScanf >> format_printf"
 
     ^ entryStream printf:formatSpec with:arg1 with:arg2 with:arg3 with:arg4 with:arg5
 
@@ -980,7 +996,9 @@
 !
 
 printf:formatSpec withAll:args
-    "convenient C-style formatted printing with an arbitrary number of arguments"
+    "convenient C-style formatted printing with an arbitrary number of arguments.
+     For smalltalk specific formats, 
+     see documentation in PrintfScanf >> format_printf"
 
     ^ entryStream printf:formatSpec withAll:args