about summary refs log tree commit diff
path: root/src/libstd/comm/select.rs
diff options
context:
space:
mode:
authorHuon Wilson <dbau.pp+github@gmail.com>2014-01-26 13:25:02 +1100
committerHuon Wilson <dbau.pp+github@gmail.com>2014-01-26 13:33:05 +1100
commit0aef487a5c2797b34e64ddcfa3974264fbc9830b (patch)
tree9633f80b156d69af708248edd37a0dc7d66b701e /src/libstd/comm/select.rs
parent6516b303b5f35e81350cccdf6629766e2b0a027e (diff)
downloadrust-0aef487a5c2797b34e64ddcfa3974264fbc9830b.tar.gz
rust-0aef487a5c2797b34e64ddcfa3974264fbc9830b.zip
std,extra: Make some types public and other private.
These are either returned from public functions, and really should
appear in the documentation, but don't since they're private, or are
implementation details that are currently public.
Diffstat (limited to 'src/libstd/comm/select.rs')
-rw-r--r--src/libstd/comm/select.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstd/comm/select.rs b/src/libstd/comm/select.rs
index 6a10ac56a4e..96c345f3689 100644
--- a/src/libstd/comm/select.rs
+++ b/src/libstd/comm/select.rs
@@ -89,6 +89,7 @@ pub struct Select {
 /// This handle is used to keep the port in the set as well as interact with the
 /// underlying port.
 pub struct Handle<'port, T> {
+    /// A unique ID for this Handle.
     id: uint,
     priv selector: &'port Select,
     priv port: &'port mut Port<T>,