Fixed typo

master
mkb2091 2021-10-19 22:45:26 +01:00
parent 3e9ccf53e1
commit b3f93117d2
1 changed files with 2 additions and 2 deletions

View File

@ -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
}