From fa1e57a7021d8c114357c55b6151298bc11e621c Mon Sep 17 00:00:00 2001 From: Jan Srzednicki Date: Wed, 2 Oct 2024 20:03:24 +0200 Subject: [PATCH] review comments --- time/src/duration.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/time/src/duration.rs b/time/src/duration.rs index d2e2b5962..0da8385b3 100644 --- a/time/src/duration.rs +++ b/time/src/duration.rs @@ -41,8 +41,7 @@ type Nanoseconds = pub struct Duration { /// Number of whole seconds. seconds: i64, - /// Number of nanoseconds within the second. The sign always matches the `seconds` field, - /// except when `seconds` is 0. + /// Number of nanoseconds within the second. The sign always matches the `seconds` field. // Sign must match that of `seconds` (though this is not a safety requirement). nanoseconds: Nanoseconds, #[allow(clippy::missing_docs_in_private_items)]