summary refs log tree commit diff
path: root/src/libstd/sync
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2015-01-04 08:44:31 +0200
committerTshepang Lekhonkhobe <tshepang@gmail.com>2015-01-04 08:44:31 +0200
commitd5d6de99b175545029d6cb32874a3f5188ee9229 (patch)
tree57a772ea7d0c6aa2f3dbe4e80c6d61f34745db64 /src/libstd/sync
parentc6c786671d692d7b13c2e5c68a53001327b4b125 (diff)
downloadrust-d5d6de99b175545029d6cb32874a3f5188ee9229.tar.gz
rust-d5d6de99b175545029d6cb32874a3f5188ee9229.zip
doc: remove incomplete sentence
Diffstat (limited to 'src/libstd/sync')
-rw-r--r--src/libstd/sync/mpsc/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sync/mpsc/mod.rs b/src/libstd/sync/mpsc/mod.rs
index e9dc3d986ba..04d841d921d 100644
--- a/src/libstd/sync/mpsc/mod.rs
+++ b/src/libstd/sync/mpsc/mod.rs
@@ -19,7 +19,7 @@
 //!
 //! A `Sender` or `SyncSender` is used to send data to a `Receiver`. Both
 //! senders are clone-able (multi-producer) such that many threads can send
-//! simultaneously to one receiver (single-consumer).  These channels are
+//! simultaneously to one receiver (single-consumer).
 //!
 //! These channels come in two flavors:
 //!