]> gitweb.factorcode.org Git - factor.git/commitdiff
calendar: overtomorrow -> overmorrow
authorDoug Coleman <doug.coleman@gmail.com>
Sat, 3 Dec 2022 15:42:12 +0000 (09:42 -0600)
committerDoug Coleman <doug.coleman@gmail.com>
Sat, 3 Dec 2022 15:42:12 +0000 (09:42 -0600)
Seems like I chose a less popular spelling.

basis/calendar/calendar.factor
basis/fixups/fixups.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
index d2d069497add65fe5ba0547c655750f9e46749e0..75690f83f1bdfc386315b200f3af0903110e5766 100644 (file)
@@ -49,6 +49,7 @@ CONSTANT: word-renames {
     { "short" { "index-or-length" "0.99" } }
     { "map-integers" { "map-integers-as" "0.99" } }
     { "deep-subseq?" { "deep-subseq-of?" "0.99" } }
+    { "overtomorrow" { "overmorrow" "0.99" } }
 }
 
 : compute-assoc-fixups ( continuation name assoc -- seq )