Skip to content

Commit

Permalink
review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
vriesk committed Oct 2, 2024
1 parent e596d04 commit fa1e57a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions time/src/duration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down

0 comments on commit fa1e57a

Please sign in to comment.