#OTHER by mawalch
authormawalch
Thu, 11 May 2017 13:31:34 +0200
changeset 21747 ee2cfb32702a
parent 21746 73d0cc4cb23c
child 21748 0172bd7d20b4
#OTHER by mawalch Spelling fixes.
CharacterArray.st
--- a/CharacterArray.st	Thu May 11 13:31:29 2017 +0200
+++ b/CharacterArray.st	Thu May 11 13:31:34 2017 +0200
@@ -345,7 +345,6 @@
     "Created: 3.8.1997 / 18:16:40 / cg"
 ! !
 
-
 !CharacterArray class methodsFor:'cleanup'!
 
 lowSpaceCleanup
@@ -1088,7 +1087,7 @@
 
 % anArrayOfOperands
     "return a copy of the receiver, where a '%i' escape
-     is replaced by the coresponding string from the argument array.
+     is replaced by the corresponding string from the argument array.
      'i' may be between 1 and 9 (i.e. a maximum of 9 placeholders is allowed).
      Added for GNU-ST compatibility."
 
@@ -1101,6 +1100,8 @@
      'do you %(what) ?'
         % (Dictionary new at:#'what' put:'understand'; yourself)
     "
+
+    "Modified (comment): / 11-05-2017 / 12:43:08 / mawalch"
 ! !
 
 !CharacterArray methodsFor:'Compatibility-ST/V'!
@@ -1679,7 +1680,7 @@
 
 bindWithArguments:anArrayOfStrings
     "return a copy of the receiver, where a '%i' escape
-     is replaced by the coresponding string from the argument array.
+     is replaced by the corresponding string from the argument array.
      'i' may be between 1 and 9 (i.e. a maximum of 9 placeholders is allowed).
      To get an integer-indexed placeHolder followed by another digit,
      or an index > 9, you must use %(digit).
@@ -1694,6 +1695,8 @@
      'do you %(what) ?'
         bindWithArguments:(Dictionary new at:#'what' put:'understand'; yourself)
     "
+
+    "Modified (comment): / 11-05-2017 / 12:42:57 / mawalch"
 !
 
 indexOfString: aString
@@ -4911,8 +4914,6 @@
 ! !
 
 
-
-
 !CharacterArray methodsFor:'matching - glob expressions'!
 
 compoundMatch:aString
@@ -8234,7 +8235,6 @@
     ^ aVisitor visitString:self with:aParameter
 ! !
 
-
 !CharacterArray class methodsFor:'documentation'!
 
 version