@@ -479,11 +479,10 @@ impl SystemTime {
479
479
/// measurement lies, and using `UNIX_EPOCH + duration` can be used to create a
480
480
/// `SystemTime` instance to represent another fixed point in time.
481
481
///
482
- /// `duration_since(UNIX_EPOCH).unwrap().as_secs()`
483
- /// returns a POSIX `time_t` (as a `u64`):
482
+ /// `duration_since(UNIX_EPOCH).unwrap().as_secs()` returns
484
483
/// the number of non-leap seconds since the start of 1970 UTC.
485
- /// This is the same time representation as used in many Internet protocols ,
486
- /// for example: JWT, CBOR, TOTP, certificate transparency and DNS TSIG/DNSSEC .
484
+ /// This is a POSIX `time_t` ( as a `u64`) ,
485
+ /// and is the same time representation as used in many Internet protocols .
487
486
///
488
487
/// # Examples
489
488
///
@@ -644,11 +643,10 @@ impl fmt::Debug for SystemTime {
644
643
/// measurement lies, and using `UNIX_EPOCH + duration` can be used to create a
645
644
/// [`SystemTime`] instance to represent another fixed point in time.
646
645
///
647
- /// `duration_since(UNIX_EPOCH).unwrap().as_secs()`
648
- /// returns a POSIX `time_t` (as a `u64`):
646
+ /// `duration_since(UNIX_EPOCH).unwrap().as_secs()` returns
649
647
/// the number of non-leap seconds since the start of 1970 UTC.
650
- /// This is the same time representation as used in many Internet protocols ,
651
- /// for example: JWT, CBOR, TOTP, certificate transparency and DNS TSIG/DNSSEC .
648
+ /// This is a POSIX `time_t` ( as a `u64`) ,
649
+ /// and is the same time representation as used in many Internet protocols .
652
650
///
653
651
/// # Examples
654
652
///
0 commit comments