From a237ceb030700792cd2e0895a0839bbf5e7b60a4 Mon Sep 17 00:00:00 2001 From: Nick Hamann Date: Wed, 29 Apr 2015 16:21:39 -0500 Subject: [PATCH] Add some missing punctuation in the libstd/net/tcp.rs docs. --- src/libstd/net/tcp.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/net/tcp.rs b/src/libstd/net/tcp.rs index e48d0e6008b87..130e1eee8f924 100644 --- a/src/libstd/net/tcp.rs +++ b/src/libstd/net/tcp.rs @@ -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) }