Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/event/kqueue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ pub unsafe fn kevent_timespec<Fd: AsFd, Buf: Buffer<Event>>(
/// `kqueue`.
///
/// This is a wrapper around [`kevent_timespec`] which takes a `Duration`
/// instead of a `Timespec` for the timemout value. `Timespec` has a signed
/// instead of a `Timespec` for the timeout value. `Timespec` has a signed
/// `i64` seconds field; if converting `Duration` to `Timespec` overflows,
/// `None` is passed as the timeout instead, such such a large timeout would
/// be effectively infinite in practice.
Expand Down
2 changes: 1 addition & 1 deletion src/not_implemented.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! Documentation about unimplemented functions.
//!
//! This module contains documentation for several functions that rustix does
//! not implement, either because they are out of scope, or because they are
//! not implement, either because they are out of scope, or because they
//! could probably be implemented but are not yet.

macro_rules! not_implemented {
Expand Down
Loading