diff options
author | Ori Bernstein <ori@eigenstate.org> | 2014-09-26 15:45:19 -0400 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2014-09-26 15:45:19 -0400 |
commit | 884b1fe78bbc719a817c9d0070ee5e594e14a8b4 (patch) | |
tree | 390fb22c3e58ff9292bd5f4b80d8f6d553942fd0 /lib/date | |
parent | bc8c0ff895ba4ea2096c21446b10391d60ff5f5d (diff) | |
download | mc-884b1fe78bbc719a817c9d0070ee5e594e14a8b4.tar.gz |
Fix build: unimplemented functions commented.
Diffstat (limited to 'lib/date')
-rw-r--r-- | lib/date/date.myr | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/date/date.myr b/lib/date/date.myr index c79ea99..5c3171b 100644 --- a/lib/date/date.myr +++ b/lib/date/date.myr @@ -13,12 +13,14 @@ pkg date = const tzoff : (tzname : byte[:], tm : std.time -> delta) const isleap : (d : instant -> bool) - /* date deltaerences */ + /* date differences */ const add : (d : instant, dt : delta -> instant) const sub : (d : instant, dt : delta -> instant) const delta : (a : instant, b : instant -> delta) + /* const duradd : (d : instant, dt : period -> instant) const dursub : (d : instant, dt : period -> instant) + */ ;; const UnixJulianDiff = 719468 |