summaryrefslogtreecommitdiff
path: root/src/sys/ioctl
diff options
context:
space:
mode:
authorConrad Kramer <conrad@kramerapps.com>2016-11-25 00:06:22 -0500
committerConrad Kramer <conrad@kramerapps.com>2016-12-10 12:26:23 -0800
commit6c7418ac9d508a8594d77100004ad31a42771075 (patch)
tree61530cda5c85ba99fa22a21ef0f29238c48a0f05 /src/sys/ioctl
parent2cfeb5758e1c4957acf4a8108a4c0793ef18a937 (diff)
downloadnix-6c7418ac9d508a8594d77100004ad31a42771075.zip
Fix typo in documentation
Diffstat (limited to 'src/sys/ioctl')
-rw-r--r--src/sys/ioctl/mod.rs2
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