diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/sys/ioctl/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sys/ioctl/mod.rs b/src/sys/ioctl/mod.rs index 4d4d1072..387024f4 100644 --- a/src/sys/ioctl/mod.rs +++ b/src/sys/ioctl/mod.rs @@ -90,7 +90,7 @@ //! How do I get the magic numbers? //! =============================== //! -//! For Linux, look at your system's headers. For example, `/usr/include/linxu/input.h` has a lot +//! For Linux, look at your system's headers. For example, `/usr/include/linux/input.h` has a lot //! of lines defining macros which use `_IOR`, `_IOW`, `_IOC`, and `_IORW`. These macros //! correspond to the `ior!`, `iow!`, `ioc!`, and `iorw!` macros defined in this crate. //! Additionally, there is the `ioctl!` macro for creating a wrapper around `ioctl` that is |