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)]