summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-04-11 19:04:08 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-04-11 19:04:08 +0530
commitc34077539eed267b6ec830fbe749a813abbbb4c4 (patch)
treef4ae28e854142aa592ec6bc643ebea8b42987166 /src/libstd
parent5bbe386a5c811f62c3a74c48d5de037bcf759b5c (diff)
parent69f63e9c729962b9d5594cdff57a12ec15f3944d (diff)
downloadrust-c34077539eed267b6ec830fbe749a813abbbb4c4.tar.gz
rust-c34077539eed267b6ec830fbe749a813abbbb4c4.zip
Rollup merge of #24243 - frewsxcv:patch-13, r=steveklabnik
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/sync/mpsc/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/sync/mpsc/mod.rs b/src/libstd/sync/mpsc/mod.rs
index e5444843516..93b27b6ce9e 100644
--- a/src/libstd/sync/mpsc/mod.rs
+++ b/src/libstd/sync/mpsc/mod.rs
@@ -345,8 +345,8 @@ pub struct SendError<T>(#[stable(feature = "rust1", since = "1.0.0")] pub T);
 #[stable(feature = "rust1", since = "1.0.0")]
 pub struct RecvError;
 
-/// This enumeration is the list of the possible reasons that try_recv could not
-/// return data when called.
+/// This enumeration is the list of the possible reasons that `try_recv` could
+/// not return data when called.
 #[derive(PartialEq, Eq, Clone, Copy, Debug)]
 #[stable(feature = "rust1", since = "1.0.0")]
 pub enum TryRecvError {