#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Wed, 20 Jun 2018 10:14:18 +0200
changeset 23117 ca5a1992dafc
parent 23116 ea66dd04ef75
child 23118 0c79d2fbcf16
#DOCUMENTATION by cg class: String comment/format in: #compareCollatingWith:
String.st
--- a/String.st	Wed Jun 20 10:13:10 2018 +0200
+++ b/String.st	Wed Jun 20 10:14:18 2018 +0200
@@ -540,6 +540,7 @@
 
 
 
+
 !String class methodsFor:'queries'!
 
 defaultPlatformClass
@@ -562,6 +563,7 @@
 
 
 
+
 !String methodsFor:'accessing'!
 
 at:index
@@ -1975,7 +1977,7 @@
      The comparison is language specific, depending on the value of
      LC_COLLATE, which is in the shell environment."
 
-    ^ self  compareWith:aString collating:true
+    ^ self compareWith:aString collating:true
 
     "
      'hallo' compareWith:'hällo'
@@ -1984,6 +1986,8 @@
      'hallo' compareCollatingWith:'hällo'
      'hbllo' compareCollatingWith:'hällo'
     "
+
+    "Modified (format): / 20-06-2018 / 10:14:09 / Claus Gittinger"
 !
 
 compareWith:aString
@@ -4630,6 +4634,7 @@
     "Modified (comment): / 01-05-2017 / 14:05:41 / cg"
 ! !
 
+
 !String methodsFor:'substring searching'!
 
 caseInsensitiveIndexOfSubCollection:aSubString startingAt:startIndex ifAbsent:exceptionValue 
@@ -5003,6 +5008,7 @@
 
 ! !
 
+
 !String class methodsFor:'documentation'!
 
 version