Skip to content

Commit 3e8b818

Browse files
committed
Style
1 parent 41af2da commit 3e8b818

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/std/src/timestamp.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ impl Timestamp {
7979
impl fmt::Display for Timestamp {
8080
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
8181
let whole = self.seconds();
82-
let fractional = self.nanos() % 1_000_000_000;
82+
let fractional = self.subsec_nanos();
8383
write!(f, "{}.{:09}", whole, fractional)
8484
}
8585
}

0 commit comments

Comments
 (0)