diff options
| author | bors <bors@rust-lang.org> | 2015-04-11 18:31:59 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-04-11 18:31:59 +0000 |
| commit | 6790b0e51967b1487728d155e0800a1ed03a30d3 (patch) | |
| tree | 51c11cb951751d408b68c401a487c5f2fbe26157 /src/libstd/sync | |
| parent | 67a8f61730418768f07d8ed0f9735a31d0c5d84d (diff) | |
| parent | 0a2885ad944aa1a5f60a72a7551b1b45367637f6 (diff) | |
| download | rust-6790b0e51967b1487728d155e0800a1ed03a30d3.tar.gz rust-6790b0e51967b1487728d155e0800a1ed03a30d3.zip | |
Auto merge of #24328 - Manishearth:rollup, r=Manishearth
Diffstat (limited to 'src/libstd/sync')
| -rw-r--r-- | src/libstd/sync/mpsc/mod.rs | 4 |
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 { |
