Skip to content
Snippets Groups Projects
Commit 43ad3ea1 authored by Niko Ehrenfeuchter's avatar Niko Ehrenfeuchter :keyboard:
Browse files

Use "less than a minute" for deltas < 60 seconds.

Refers to #25
parent 3c519940
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,7 @@ namespace ATxCommon
const int year = day * 365;
if (delta < minute)
return $"{delta} seconds{desc}";
return $"less than a minute{desc}";
if (delta < 2 * minute)
return $"a minute{desc}";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment