Merge pull request #78 from Archytaus/master

Fix typo in TcpStream and UdpSocket documentation
This commit is contained in:
Alex Crichton
2016-10-24 19:22:59 -07:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -269,7 +269,7 @@ impl TcpStream {
self.io.poll_read()
}
/// Test whether this socket is writey to be written to or not.
/// Test whether this socket is ready to be written to or not.
///
/// If the socket is *not* writable then the current task is scheduled to
/// get a notification when the socket does become writable. That is, this
+1 -1
View File
@@ -57,7 +57,7 @@ impl UdpSocket {
self.io.poll_read()
}
/// Test whether this socket is writey to be written to or not.
/// Test whether this socket is ready to be written to or not.
///
/// If the socket is *not* writable then the current task is scheduled to
/// get a notification when the socket does become writable. That is, this