WeakArray.st
changeset 19625 699326070cde
parent 19541 1417ba3bcde7
child 19635 875eb54afd2c
child 20030 93008997c59e
--- a/WeakArray.st	Wed Apr 20 18:22:20 2016 +0200
+++ b/WeakArray.st	Wed Apr 20 19:20:15 2016 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1991 by Claus Gittinger
 	      All Rights Reserved
@@ -270,7 +272,7 @@
     ^ self at:index
 !
 
-at:index ifInvalid:exeptionalValue
+at:index ifInvalid:exceptionalValue
     "return the indexed instance variable with index, anInteger,
      but only if still valid; otherwise return the value from exceptionalValue"
 
@@ -278,7 +280,7 @@
 
     el := self basicAt:index.
     el class == SmallInteger ifTrue:[
-	^ exeptionalValue value
+        ^ exceptionalValue value
     ].
     ^ el
 !