Fix docs for TcpListener::bind

`socket_addr` was renamed to `local_addr` in 1.0beta.

See: f798674b86382929ca17c88de422a6e2fdb27f2a
This commit is contained in:
Kevin Butler 2015-11-24 23:13:07 +00:00
parent 7fa2c6ca31
commit add5054bea

View File

@ -234,7 +234,7 @@ impl TcpListener {
///
/// Binding with a port number of 0 will request that the OS assigns a port
/// to this listener. The port allocated can be queried via the
/// `socket_addr` function.
/// `local_addr` method.
///
/// The address type can be any implementor of `ToSocketAddrs` trait. See
/// its documentation for concrete examples.