diff --git a/src/time/cds.rs b/src/time/cds.rs index a3e07a0..388437c 100644 --- a/src/time/cds.rs +++ b/src/time/cds.rs @@ -868,13 +868,13 @@ impl CdsTime { Self::from_dt_generic_ps_prec(dt, LengthOfDaySegment::Long24Bits) } - /// Like [Self::from_now_with_u24_days] but with microsecond sub-millisecond precision. + /// Like [Self::now_with_u24_days] but with microsecond sub-millisecond precision. #[cfg(feature = "std")] pub fn now_with_u24_days_us_precision() -> Result { Self::now_generic_with_us_prec(LengthOfDaySegment::Long24Bits) } - /// Like [Self::from_now_with_u24_days] but with picoseconds sub-millisecond precision. + /// Like [Self::now_with_u24_days] but with picoseconds sub-millisecond precision. #[cfg(feature = "std")] pub fn now_with_u24_days_ps_precision() -> Result { Self::now_generic_with_us_prec(LengthOfDaySegment::Long24Bits) @@ -960,13 +960,13 @@ impl CdsTime { Self::from_dt_generic_ps_prec(dt, LengthOfDaySegment::Short16Bits) } - /// Like [Self::from_now_with_u16_days] but with microsecond sub-millisecond precision. + /// Like [Self::now_with_u16_days] but with microsecond sub-millisecond precision. #[cfg(feature = "std")] pub fn now_with_u16_days_us_precision() -> Result { Self::now_generic_with_us_prec(LengthOfDaySegment::Short16Bits) } - /// Like [Self::from_now_with_u16_days] but with picosecond sub-millisecond precision. + /// Like [Self::now_with_u16_days] but with picosecond sub-millisecond precision. #[cfg(feature = "std")] pub fn from_now_with_u16_days_ps_precision() -> Result { Self::from_now_generic_ps_prec(LengthOfDaySegment::Short16Bits)