Timestamp.st
changeset 7327 ab17eb5f11a6
parent 7111 3cc2963786e2
child 7466 87775b24d5ea
--- a/Timestamp.st	Mon Jun 02 12:00:02 2003 +0200
+++ b/Timestamp.st	Tue Jun 03 12:36:51 2003 +0200
@@ -616,7 +616,10 @@
 !
 
 dayInWeek
-    "return the week-day of the receiver - 1 for monday, 7 for sunday"
+    "return the week-day of the receiver - 1 for monday, 7 for sunday
+     WARNING: different from ANSIs dayOfWeek (which returns 1 for sunday, ... 7 for saturday).  
+     WARNING: does not care for pre-julian dates 
+        (i.e. do not use this for dates before 1752)"
 
     ^ (OperatingSystem computeTimeAndDateFrom:osTime) at:11
 
@@ -1170,5 +1173,5 @@
 !AbsoluteTime class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Timestamp.st,v 1.76 2003-03-09 15:32:10 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Timestamp.st,v 1.77 2003-06-03 10:36:42 cg Exp $'
 ! !