summaryrefslogtreecommitdiffstats
path: root/tokio/src/net/unix/stream.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio/src/net/unix/stream.rs')
-rw-r--r--tokio/src/net/unix/stream.rs9
1 files changed, 5 insertions, 4 deletions
diff --git a/tokio/src/net/unix/stream.rs b/tokio/src/net/unix/stream.rs
index 5138077b..2f3dd128 100644
--- a/tokio/src/net/unix/stream.rs
+++ b/tokio/src/net/unix/stream.rs
@@ -43,11 +43,12 @@ impl UnixStream {
Ok(stream)
}
- /// Consumes a `UnixStream` in the standard library and returns a
- /// nonblocking `UnixStream` from this crate.
+ /// Creates new `UnixStream` from a `std::os::unix::net::UnixStream`.
///
- /// The returned stream will be associated with the given event loop
- /// specified by `handle` and is ready to perform I/O.
+ /// This function is intended to be used to wrap a UnixStream from the
+ /// standard library in the Tokio equivalent. The conversion assumes
+ /// nothing about the underlying stream; it is left up to the user to set
+ /// it in non-blocking mode.
///
/// # Panics
///