#OTHER by mawalch
authormawalch
Mon, 18 Jul 2016 14:14:06 +0200
changeset 3707 baba86518fd9
parent 3706 957d8c1bbd16
child 3708 108b53ed090f
child 3709 ae76cdc6787a
#OTHER by mawalch doc
ValueHolder.st
--- a/ValueHolder.st	Mon Jul 18 14:11:57 2016 +0200
+++ b/ValueHolder.st	Mon Jul 18 14:14:06 2016 +0200
@@ -94,7 +94,7 @@
     "return a new ValueHolder holding 0.0 as initial value.
      The name is somewhat missleading - actually it should be called newFloat."
 
-    ^ self with:0.0 
+    ^ self with:0.0
 !
 
 newNumber
@@ -145,10 +145,10 @@
         ^ super displayOn:aGCOrStream.
     ].
 
-    aGCOrStream 
+    aGCOrStream
         nextPutAll:self class name;
         nextPut:$(.
-    value displayOn:aGCOrStream. 
+    value displayOn:aGCOrStream.
     aGCOrStream nextPut:$)
 !