diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2013-01-01 01:00:30 -0500 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2013-01-01 01:02:48 -0500 |
| commit | 9433284a11920ea3b48ac298c8872fb577eaa44d (patch) | |
| tree | 0c625ac883676781262890c73ff8f601d2dd5789 | |
| parent | fa5ee934edecff9c3fa82ade705bd964dc734525 (diff) | |
| download | rust-9433284a11920ea3b48ac298c8872fb577eaa44d.tar.gz rust-9433284a11920ea3b48ac298c8872fb577eaa44d.zip | |
Add some extra description for std::net
| -rw-r--r-- | src/libstd/net.rs | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/libstd/net.rs b/src/libstd/net.rs index 230fb4b616d..ca1cc123596 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; |
