Skip to content

Commit

Permalink
Rollup merge of rust-lang#24243 - frewsxcv:patch-13, r=steveklabnik
Browse files Browse the repository at this point in the history
  • Loading branch information
steveklabnik committed Apr 10, 2015
2 parents 29e110e + 69f63e9 commit bb2cdc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libstd/sync/mpsc/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit bb2cdc1

Please sign in to comment.