class: Set
authorStefan Vogel <sv@exept.de>
Thu, 16 Apr 2015 18:29:45 +0200
changeset 18221 5299a2514ed2
parent 18218 80b81f1f725a
child 18222 4e1db26c34da
class: Set comment/format in: #=
Set.st
--- a/Set.st	Wed Apr 15 22:33:16 2015 +0200
+++ b/Set.st	Thu Apr 16 18:29:45 2015 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1991 by Claus Gittinger
 	      All Rights Reserved
@@ -660,7 +662,7 @@
 
     "
      #(1 2 3 4 5) asSet = #(2 3 4 5 1) asSet
-     #(nil 1 2 3 4 5) asSet = #(2 3 4 5 1) asSet´
+     #(nil 1 2 3 4 5) asSet = #(2 3 4 5 1) asSet
      #(1 2 3 4 5) asSet = #(2 3 4 5 1.0) asSet 
      #(1 2 3 4 5) asSet = #(2 3 4 5 'one') asSet 
     "
@@ -1334,11 +1336,11 @@
 !Set class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Set.st,v 1.131 2015-02-04 21:08:10 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Set.st,v 1.132 2015-04-16 16:29:45 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/Set.st,v 1.131 2015-02-04 21:08:10 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Set.st,v 1.132 2015-04-16 16:29:45 stefan Exp $'
 ! !