From 5f676b8e19167e4b2f0cab817000134d8adecf09 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 27 Mar 2019 14:39:20 -0700 Subject: [PATCH] Fixed a typo and added comparison support for Time --- lib/core/time.nom | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/core/time.nom b/lib/core/time.nom index 0a82fa5..88241d6 100644 --- a/lib/core/time.nom +++ b/lib/core/time.nom @@ -22,7 +22,7 @@ external: Hint: One of these two should be a number, not a time. ") - if ($other isn'tt "a Number"): + if ($other isn't "a Number"): $other = ($os.time $other) if ($self isn't "a Number"): @@ -37,7 +37,9 @@ external: if ($other is "a Time"): return ($os.difftime $self ($os.time $other)) return (a Time ($os.date "*t" ($self - $other, rounded))) - + + ($self, <$other) means (($self, since epoch) < ($other, since epoch)) + ($self, <=$other) means (($self, since epoch) <= ($other, since epoch)) ($self, as text) means ($os.date "%I:%M%p %a %b %e %Y" ($os.time $self)) ($self, as text in format $format) means ($os.date $format ($os.time $self)) ($self, since epoch) means ($os.time $self)