UtcTimestamp.st
changeset 13232 23a5fb2c645f
parent 13231 e222e6c577ff
child 13794 600bc500741b
--- a/UtcTimestamp.st	Mon Jan 24 14:31:06 2011 +0100
+++ b/UtcTimestamp.st	Mon Jan 24 18:58:33 2011 +0100
@@ -72,12 +72,14 @@
 !UtcTimestamp methodsFor:'converting'!
 
 asLocalTimestamp
-    "represent myself as a local timestamp"
+    "represent myself as a timestamp in the local timezone"
 
     ^ Timestamp fromOSTime:osTime
 !
 
 asUtcTimestamp
+    "I am an UtcTimestamp"
+
     ^ self
 ! !
 
@@ -109,5 +111,5 @@
 !UtcTimestamp class methodsFor:'documentation'!
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/UtcTimestamp.st,v 1.2 2011-01-24 13:31:06 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/UtcTimestamp.st,v 1.3 2011-01-24 17:58:33 stefan Exp $'
 ! !