Add some missing punctuation in the libstd/net/tcp.rs docs.

This commit is contained in:
Nick Hamann 2015-04-29 16:21:39 -05:00
parent e2d770a398
commit a237ceb030

@ -125,7 +125,7 @@ impl TcpStream {
self.0.duplicate().map(TcpStream)
}
/// Sets the nodelay flag on this connection to the boolean specified
/// Sets the nodelay flag on this connection to the boolean specified.
pub fn set_nodelay(&self, nodelay: bool) -> io::Result<()> {
self.0.set_nodelay(nodelay)
}