We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41af2da commit 3e8b818Copy full SHA for 3e8b818
packages/std/src/timestamp.rs
@@ -79,7 +79,7 @@ impl Timestamp {
79
impl fmt::Display for Timestamp {
80
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
81
let whole = self.seconds();
82
- let fractional = self.nanos() % 1_000_000_000;
+ let fractional = self.subsec_nanos();
83
write!(f, "{}.{:09}", whole, fractional)
84
}
85
0 commit comments