mkb2091 3 ani în urmă
părinte
comite
23df785e5c
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 2 2
      src/time.rs

+ 2 - 2
src/time.rs

@@ -90,12 +90,12 @@ impl Instant {
     }
     }
 
 
     /// The total number of milliseconds that have passed since
     /// The total number of milliseconds that have passed since
-    /// the biginning of time.
+    /// the beginning of time.
     pub const fn total_millis(&self) -> i64 {
     pub const fn total_millis(&self) -> i64 {
         self.micros / 1000
         self.micros / 1000
     }
     }
     /// The total number of milliseconds that have passed since
     /// The total number of milliseconds that have passed since
-    /// the biginning of time.
+    /// the beginning of time.
     pub const fn total_micros(&self) -> i64 {
     pub const fn total_micros(&self) -> i64 {
         self.micros
         self.micros
     }
     }