Subject: | $delta>86400 should be $delta>=86400 |
In https://metacpan.org/source/GUGOD/Time-Verbal-1.0.1/lib/Time/Verbal.pm#L39 the first expression should be $delta>=86400 (or I think you can omit this one completely). Otherwise for a distance of exactly one day the module picks wrongly the plural form:
say Time::Verbal->new->distance($now, $now + 86400);
-> "1 days", but it should be "one day".