CharacterArray.st
changeset 17192 dc09b5644f84
parent 17191 4af58fcf0955
child 17205 b266cb703584
--- a/CharacterArray.st	Mon Dec 08 16:12:00 2014 +0100
+++ b/CharacterArray.st	Mon Dec 08 17:27:10 2014 +0100
@@ -12,11 +12,11 @@
 "{ Package: 'stx:libbasic' }"
 
 UninterpretedBytes variableByteSubclass:#CharacterArray
-	instanceVariableNames:''
-	classVariableNames:'PreviousMatch DecoderTables EncoderTables DecodingFailedSignal
-		EncodingFailedSignal'
-	poolDictionaries:''
-	category:'Collections-Text'
+        instanceVariableNames:''
+        classVariableNames:'PreviousMatch DecoderTables EncoderTables DecodingFailedSignal
+                EncodingFailedSignal'
+        poolDictionaries:''
+        category:'Collections-Text'
 !
 
 !CharacterArray class methodsFor:'documentation'!
@@ -5686,10 +5686,10 @@
      replaced by corresponding arguments' printStrings from the argArrayOrDictionary.
      I.e. 'hello %1; how is %2' expandPlaceholdersWith:#('world' 'this') results
      in the new string 'hello world; how is this'.
-     As an extension, the argument may also be a dictionary, providing
-     values for symbolic keys.
+     As an extension, the argument may also be a dictionary, providing values for symbolic keys.
      In this case, %a .. %z and %(...) are also allowed.
      (%1..%9 require a numeric key in the dictionary, however)
+     Also, the values in argArrayOrDictionary may be blocks.
      To get a '%' character, use a '%%'-escape.
      To get an integer-indexed placeHolder followed by another digit,
      or an index > 9, you must use %(digit).
@@ -7264,11 +7264,11 @@
 !CharacterArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.557 2014-12-08 15:12:00 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.558 2014-12-08 16:27:10 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.557 2014-12-08 15:12:00 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.558 2014-12-08 16:27:10 cg Exp $'
 ! !