I would expect this: ``` c# var timespan = TimeSpan.FromDays(2) + TimeSpan.FromHours(3) + TimeSpan.FromMinutes(5); Assert.That(timespan.Humanize(), Is.EqualTo("2 days, 3 hours, 5 minutes")); ``` But it seems to come back with `2 days` currently.
I would expect this:
But it seems to come back with
2 dayscurrently.