about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorNick Hamann <nick@wabbo.org>2015-04-29 16:21:39 -0500
committerNick Hamann <nick@wabbo.org>2015-04-29 16:21:39 -0500
commita237ceb030700792cd2e0895a0839bbf5e7b60a4 (patch)
tree66bd0f46701e2120edb1d33af4a89e5db230e475 /src
parente2d770a398a12ab44da6b6d85010fe6a30b3687b (diff)
downloadrust-a237ceb030700792cd2e0895a0839bbf5e7b60a4.tar.gz
rust-a237ceb030700792cd2e0895a0839bbf5e7b60a4.zip
Add some missing punctuation in the libstd/net/tcp.rs docs.
Diffstat (limited to 'src')
-rw-r--r--src/libstd/net/tcp.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/net/tcp.rs b/src/libstd/net/tcp.rs
index e48d0e6008b..130e1eee8f9 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)
     }