From 9433284a11920ea3b48ac298c8872fb577eaa44d Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Tue, 1 Jan 2013 01:00:30 -0500 Subject: [PATCH] Add some extra description for std::net --- src/libstd/net.rs | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/libstd/net.rs b/src/libstd/net.rs index 230fb4b616d00..ca1cc1235961a 100644 --- a/src/libstd/net.rs +++ b/src/libstd/net.rs @@ -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;