summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPaul Osborne <osbpau@gmail.com>2016-10-29 17:00:47 -0500
committerPaul Osborne <osbpau@gmail.com>2016-10-29 17:24:04 -0500
commit2f220fce96184e8624b5534153f3182b61bb05c5 (patch)
tree8eaf9c35e9f4c9b0e3efb79baef0c733063b063f /src
parent4b6b7b4b4626ad72d47c5021c3d7c94e600e62ee (diff)
downloadnix-2f220fce96184e8624b5534153f3182b61bb05c5.zip
unistd: add module-level doc comment that makes sense
The previous one was entirely too generic. Signed-off-by: Paul Osborne <osbpau@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/unistd.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unistd.rs b/src/unistd.rs
index bcc09150..8966ea12 100644
--- a/src/unistd.rs
+++ b/src/unistd.rs
@@ -1,5 +1,5 @@
-//! Standard symbolic constants and types
-//!
+//! Safe wrappers around functions found in libc "unistd.h" header
+
use {Errno, Error, Result, NixPath};
use fcntl::{fcntl, OFlag, O_CLOEXEC, FD_CLOEXEC};
use fcntl::FcntlArg::F_SETFD;