From fc5f4abdcfdcfddba91709ee9a78865c587c1457 Mon Sep 17 00:00:00 2001 From: Paul Dicker Date: Fri, 2 Feb 2024 20:51:51 +0100 Subject: [PATCH] `TimeDelta` is not a full ISO 8601 duration --- src/time_delta.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/time_delta.rs b/src/time_delta.rs index 60688efa49..2b56ecdeb7 100644 --- a/src/time_delta.rs +++ b/src/time_delta.rs @@ -40,7 +40,7 @@ const SECS_PER_DAY: i64 = 86_400; /// The number of (non-leap) seconds in a week. const SECS_PER_WEEK: i64 = 604_800; -/// ISO 8601 time duration with nanosecond precision. +/// Time duration with nanosecond precision. /// /// This also allows for negative durations; see individual methods for details. ///