Merge remote-tracking branch 'origin/main' into add_time_helpers

This commit is contained in:
2023-01-14 17:29:56 +01:00
3 changed files with 5 additions and 5 deletions

View File

@ -313,9 +313,7 @@ impl ConversionFromNow {
));
}
SubmillisPrecision::Picoseconds(_) => {
prec = Some(SubmillisPrecision::Picoseconds(
(now.subsec_nanos() * 1000),
));
prec = Some(SubmillisPrecision::Picoseconds(now.subsec_nanos() * 1000));
}
_ => (),
}