Merge pull request #4324 from steveklabnik/std_net

Add some extra description for std::net
This commit is contained in:
Brian Anderson 2012-12-31 22:04:36 -08:00
commit 587ce4894e

View File

@ -8,7 +8,17 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//! Top-level module for network-related functionality
/*!
Top-level module for network-related functionality.
Basically, including this module gives you:
* `net_tcp`
* `net_ip`
* `net_url`
See each of those three modules for documentation on what they do.
*/
pub use tcp = net_tcp;
pub use ip = net_ip;