CharacterArray.st
changeset 23287 dfc6e64b5619
parent 23249 599b1ef2acbe
child 23290 af8380fdd678
--- a/CharacterArray.st	Wed Aug 15 23:30:26 2018 +0200
+++ b/CharacterArray.st	Mon Aug 20 08:16:53 2018 +0200
@@ -5869,7 +5869,7 @@
     "Modified: 2.4.1997 / 17:28:58 / cg"
 !
 
-matches:aPatternString
+matches:aGlobPatternString
     "return true if the receiver matches aString, where aPatternString may contain GLOB meta-match
      characters $* (to match any string) or $# (to match any character).
      or [...] to match a set of characters.
@@ -5880,7 +5880,9 @@
      NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
      NOTICE: the receiver is the match pattern"
 
-    ^ aPatternString match:self
+    ^ aGlobPatternString match:self
+
+    "Modified (format): / 18-08-2018 / 20:51:45 / Claus Gittinger"
 !
 
 matches:aPatternString caseSensitive:caseSensitive