]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/calendar/calendar.factor
calendar: overtomorrow -> overmorrow
[factor.git] / basis / calendar / calendar.factor
index 28771a04ea6b758de134e321f914537419ef5d2e..f8afca050a72828424c5aace49f077dae49c7c69 100644 (file)
@@ -487,7 +487,7 @@ M: timestamp days-in-year year>> days-in-year ;
 : today ( -- timestamp ) now midnight ; inline
 : tomorrow ( -- timestamp ) 1 days hence midnight ; inline
 : yesterday ( -- timestamp ) 1 days ago midnight ; inline
-: overtomorrow ( -- timestamp ) 2 days hence midnight ; inline
+: overmorrow ( -- timestamp ) 2 days hence midnight ; inline
 : ereyesterday ( -- timestamp ) 2 days ago midnight ; inline
 
 : today? ( timestamp -- ? ) now same-day? ; inline