Clarify error phrase in sub_instant
function
Uses the same wording as [`src/libstd/sys/windows/time.rs`][1].
1: 95e2bf253d/src/libstd/sys/windows/time.rs (L65)
This commit is contained in:
parent
95e2bf253d
commit
33c4b37d00
2 changed files with 2 additions and 2 deletions
|
@ -144,7 +144,7 @@ impl Instant {
|
||||||
|
|
||||||
pub fn sub_instant(&self, other: &Instant) -> Duration {
|
pub fn sub_instant(&self, other: &Instant) -> Duration {
|
||||||
self.t.sub_timespec(&other.t).unwrap_or_else(|_| {
|
self.t.sub_timespec(&other.t).unwrap_or_else(|_| {
|
||||||
panic!("other was less than the current instant")
|
panic!("specified instant was later than self")
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -289,7 +289,7 @@ mod inner {
|
||||||
|
|
||||||
pub fn sub_instant(&self, other: &Instant) -> Duration {
|
pub fn sub_instant(&self, other: &Instant) -> Duration {
|
||||||
self.t.sub_timespec(&other.t).unwrap_or_else(|_| {
|
self.t.sub_timespec(&other.t).unwrap_or_else(|_| {
|
||||||
panic!("other was greater than the current instant")
|
panic!("specified instant was later than self")
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue