ValueLink.st
changeset 124 d919bc2f0078
parent 112 3e18f2cfe430
child 131 19e548711b65
--- a/ValueLink.st	Thu Nov 23 02:18:58 1995 +0100
+++ b/ValueLink.st	Thu Nov 23 02:23:34 1995 +0100
@@ -11,10 +11,10 @@
 "
 
 Link subclass:#ValueLink
-       instanceVariableNames:'value'
-       classVariableNames:''
-       poolDictionaries:''
-       category:'Collections-Support'
+	 instanceVariableNames:'value'
+	 classVariableNames:''
+	 poolDictionaries:''
+	 category:'Collections-Support'
 !
 
 !ValueLink class methodsFor:'documentation'!
@@ -33,15 +33,15 @@
 "
 !
 
-version
-    ^ '$Header: /cvs/stx/stx/libbasic2/ValueLink.st,v 1.9 1995-11-11 15:21:58 cg Exp $'
-!
-
 documentation
 "
     this class provides Links which can hold a value.
     Instances are typically used as elements in a linkedList.
 "
+!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic2/ValueLink.st,v 1.10 1995-11-23 01:21:34 cg Exp $'
 ! !
 
 !ValueLink methodsFor:'accessing'!
@@ -57,3 +57,4 @@
 
     value := anObject
 ! !
+