month vs. mon
authorClaus Gittinger <cg@exept.de>
Thu, 21 Oct 1999 21:43:15 +0200
changeset 4929 ac174b74d54e
parent 4928 1c8c123fb3d3
child 4930 edb87412f76d
month vs. mon
AbstractTime.st
--- a/AbstractTime.st	Wed Oct 20 17:48:14 1999 +0200
+++ b/AbstractTime.st	Thu Oct 21 21:43:15 1999 +0200
@@ -504,8 +504,8 @@
 
      AbsoluteTime only:
         %day     day, 00..31                    0-padded to length 2
-        %mon     month, 00..12                  0-padded to length 2
-        %yr      year, 4 digits                 0-padded to length 4
+        %month   month, 00..12                  0-padded to length 2
+        %year    year, 4 digits                 0-padded to length 4
 
      special:
         %H      24-hours - unpadded
@@ -523,7 +523,7 @@
 
      AbsoluteTime only:
         %Day    day - unpadded                    
-        %Mon    month - unpadded                    
+        %Month  month - unpadded                    
     "
 
     |dict|
@@ -604,5 +604,5 @@
 !AbstractTime class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/AbstractTime.st,v 1.23 1999-10-12 22:42:42 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/AbstractTime.st,v 1.24 1999-10-21 19:43:15 cg Exp $'
 ! !