Timestamp.st
changeset 77 6c38ca59927f
parent 54 06dbdeeed4f9
child 82 0147b4f725ae
--- a/Timestamp.st	Thu May 12 04:07:15 1994 +0200
+++ b/Timestamp.st	Tue May 17 12:09:46 1994 +0200
@@ -22,22 +22,22 @@
 COPYRIGHT (c) 1989 by Claus Gittinger
               All Rights Reserved
 
-$Header: /cvs/stx/stx/libbasic/Timestamp.st,v 1.2 1994-02-25 12:53:11 claus Exp $
+$Header: /cvs/stx/stx/libbasic/Timestamp.st,v 1.3 1994-05-17 10:06:10 claus Exp $
 '!
 
 !AbsoluteTime class methodsFor:'documentation'!
 
 documentation
 "
-This class represents time values in seconds from 1st. Jan 1970, as
-used in the Unix operating system. Its implementation is not the same
-as in ST-80 (which represents Time as seconds from 1. Jan 1901.
+    This class represents time values in seconds from 1st. Jan 1970, as
+    used in the Unix operating system. Its implementation is not the same
+    as in ST-80 (which represents Time as seconds from 1. Jan 1901.
 
-Since unix-times are 32 bit which does not fit into a SmallInteger, 
-we keep low and hi 16bit of the time separately (it could have been implemented
-using LargeIntegers though).
+    Since unix-times are 32 bit which does not fit into a SmallInteger, 
+    we keep low and hi 16bit of the time separately (it could have been implemented
+    using LargeIntegers though).
 
-This is an abstract class to support Time and Date.
+    This is an abstract class to support Time and Date.
 "
 ! !