diff options
| author | Corey Farwell <coreyf@rwell.org> | 2015-04-09 12:02:14 -0700 |
|---|---|---|
| committer | Corey Farwell <coreyf@rwell.org> | 2015-04-09 12:02:14 -0700 |
| commit | 69f63e9c729962b9d5594cdff57a12ec15f3944d (patch) | |
| tree | 0d3187ae9bf1b8ce774f1c9315cc7a9a2ad2a85b /src/libstd/sync | |
| parent | e326aa197b1ee35b41c992eec171589197a7459d (diff) | |
| download | rust-69f63e9c729962b9d5594cdff57a12ec15f3944d.tar.gz rust-69f63e9c729962b9d5594cdff57a12ec15f3944d.zip | |
Indicate keyword in doc comment is code-like
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 { |
