Bläddra i källkod

Pad output of `Display` on `Instant`

Zero-pad the milliseconds part of a displayed `Instant` to include
three leading zeros.
Closes: #297
Approved by: whitequark
David Wood 5 år sedan
förälder
incheckning
0f6144331b
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      src/time.rs

+ 1 - 1
src/time.rs

@@ -168,7 +168,7 @@ impl Duration {
 
 impl fmt::Display for Duration {
     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
-        write!(f, "{}.{}s", self.secs(), self.millis())
+        write!(f, "{}.{:03}s", self.secs(), self.millis())
     }
 }