Update doc comment for the Unix extension module

It was a bit outdated, claimed to be able to do less than it actually
could.
This commit is contained in:
Tobias Bucher 2017-10-31 10:41:10 +01:00
parent 6713736275
commit afc7106a29

View File

@ -10,8 +10,14 @@
//! Experimental extensions to `std` for Unix platforms.
//!
//! For now, this module is limited to extracting file descriptors,
//! but its functionality will grow over time.
//! Provides access to platform-level information on Unix platforms, and
//! exposes Unix-specific functions that would otherwise be inappropriate as
//! part of the core `std` library.
//!
//! It exposes more ways to deal with platform-specific strings (`OsStr`,
//! `OsString`), allows to set permissions more granularly, extract low-level
//! file descriptors from files and sockets, and has platform-specific helpers
//! for spawning processes.
//!
//! # Examples
//!