CharacterArray.st
changeset 25258 58b39832286e
parent 25219 7e4c664a7697
child 25279 cd4c0ad19c6e
--- a/CharacterArray.st	Tue Feb 11 18:20:08 2020 +0100
+++ b/CharacterArray.st	Wed Feb 12 18:46:25 2020 +0100
@@ -8224,7 +8224,7 @@
      - requireParentheses 
         controls if $abc is allowed or not.
         If true, multi-character replacements need to be parenthized as $(abc),
-                and the above is interpreted as $(a)bc
+                and $abc is interpreted as $(a)bc
         If false, you can also write $abc.
 
      - keepIfNoSuchKey 
@@ -8235,8 +8235,8 @@
         and the expansion will be what the block returns. 
         i.e. if the block is [:meta :name | meta], then the above will result in 'abc$(foo)def'
         and if the block is [:meta :name | name], then the above will result in 'abcfoodef'
-        Usefull if you want to expand a string twice, without loosing the key-sequences in the first place.
-        Notice: for supid backward compatibility, keepIfNoSuchKey is not applied for %X sequences, where X is a single letter.
+        Useful if you want to expand a string twice, without loosing the key-sequences in the first place.
+        Notice: for stupid backward compatibility, keepIfNoSuchKey is not applied for %X sequences, where X is a single letter.
     "
 
     |next v key numericKey
@@ -8460,6 +8460,7 @@
 
     "Created: / 14-01-2019 / 17:43:03 / Claus Gittinger"
     "Modified: / 05-06-2019 / 17:05:47 / Claus Gittinger"
+    "Modified (comment): / 12-02-2020 / 17:41:59 / Stefan Vogel"
 !
 
 expandPlaceholders:escapeCharacter