class: CharacterArray
authorClaus Gittinger <cg@exept.de>
Fri, 04 Jul 2014 12:25:18 +0200
changeset 16693 6e00c145bc29
parent 16692 1f8a3f0d0036
child 16694 ddb4534bf499
class: CharacterArray comment/format in: #unquote
CharacterArray.st
--- a/CharacterArray.st	Thu Jul 03 21:06:27 2014 +0200
+++ b/CharacterArray.st	Fri Jul 04 12:25:18 2014 +0200
@@ -1619,7 +1619,7 @@
 !CharacterArray methodsFor:'JavaScript support'!
 
 unquote
-    "removes quotes from the receiver"
+    "removes double quotes from the receiver"
 
     self size >= 2 ifTrue:[
         (self startsWith:$") ifTrue:[
@@ -6307,9 +6307,9 @@
     ].
     ^ result
 
-"/    '"hello"' withoutQuotes
-"/    '''hello''' withoutQuotes
-"/    'hello' withoutQuotes
+"/     '"hello"' withoutQuotes
+"/     '''hello''' withoutQuotes
+"/     'hello' withoutQuotes
 !
 
 withoutSeparators
@@ -6951,11 +6951,11 @@
 !CharacterArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.533 2014-06-08 08:05:08 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.534 2014-07-04 10:25:18 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.533 2014-06-08 08:05:08 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.534 2014-07-04 10:25:18 cg Exp $'
 ! !