Symbol.st
changeset 22399 cb8919387ef4
parent 21127 258bf1737046
child 22516 8fe8242e6c72
--- a/Symbol.st	Sat Dec 23 13:35:09 2017 +0100
+++ b/Symbol.st	Sat Dec 30 15:04:00 2017 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1988 by Claus Gittinger
 	      All Rights Reserved
@@ -59,7 +61,7 @@
 	which is a symbol consisting of the user visible name, prefixed by ':<ns>::'.
 	The VM's method lookup algorithm contains special handling code for such constructs.
 	Thus, if two methods are stored as 'foo' and ':NS::foo' are present in a class,
-	any send of 'foo' from wíthin the NS-namespace will invoke the second method.
+	any send of 'foo' from wíthin the NS-namespace will invoke the second method.
 	Any other send will invoke the first one.
 
 
@@ -149,8 +151,6 @@
 ! !
 
 
-
-
 !Symbol class methodsFor:'queries'!
 
 findInterned:aString
@@ -244,7 +244,6 @@
     "
 ! !
 
-
 !Symbol methodsFor:'accessing'!
 
 basicAt:index put:something
@@ -628,7 +627,7 @@
 
 !Symbol methodsFor:'evaluation'!
 
-value: el
+value:el
     "this is sent by collection enumeration methods,
      if a symbol is given instead of a block as loop-block argument"
 
@@ -639,6 +638,8 @@
 
      #(1 2 3 4) do: #printCR
      #(1 -2 -3 4) collect: #abs
+     #(1 2 3 4) select: #even
+     'hello' collect: #rot13
      someCollection collect: #withoutSeparators
     "
 !