소스 검색

Fixed typo

mkb2091 3 년 전
부모
커밋
23df785e5c
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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 biginning of time.
+    /// the beginning of time.
     pub const fn total_millis(&self) -> i64 {
         self.micros / 1000
     }
     /// The total number of milliseconds that have passed since
-    /// the biginning of time.
+    /// the beginning of time.
     pub const fn total_micros(&self) -> i64 {
         self.micros
     }