Skip to content

Commit 9b2808c

Browse files
committed
Fix a couple typos in the Apple module
Found them while doing reviews for cargo-crev.
1 parent 3af2448 commit 9b2808c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/unix/bsd/apple/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1587,7 +1587,7 @@ cfg_if! {
15871587
fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
15881588
f.debug_struct("time_value_t")
15891589
.field("seconds", &self.seconds)
1590-
.field("microseconds", &self.seconds)
1590+
.field("microseconds", &self.microseconds)
15911591
.finish()
15921592
}
15931593
}
@@ -1699,7 +1699,7 @@ cfg_if! {
16991699
fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result {
17001700
f.debug_struct("thread_identifier_info")
17011701
.field("thread_id", &self.thread_id)
1702-
.field("thread_handlee", &self.thread_handle)
1702+
.field("thread_handle", &self.thread_handle)
17031703
.field("dispatch_qaddr", &self.dispatch_qaddr)
17041704
.finish()
17051705
}

0 commit comments

Comments
 (0)