summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-03-31 10:15:35 -0700
committerAlex Crichton <alex@alexcrichton.com>2015-03-31 15:49:11 -0700
commitacdb0f9c788dca961d2b6cd5ca5304d4c63768a0 (patch)
treed81476e5ec684791c13b0ee4b5fa683750a81072 /src/libstd
parent6d2c640cf00aad6345bd93b0b64c8b3d3d2fcf50 (diff)
parent5872ae4a7a76ba67e702323d2de09a86fb5ba692 (diff)
downloadrust-acdb0f9c788dca961d2b6cd5ca5304d4c63768a0.tar.gz
rust-acdb0f9c788dca961d2b6cd5ca5304d4c63768a0.zip
rollup merge of #23893: frewsxcv/patch-6
Diffstat (limited to 'src/libstd')
-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 b2b87bb6c44..e14f32865fa 100644
--- a/src/libstd/sync/mpsc/mod.rs
+++ b/src/libstd/sync/mpsc/mod.rs
@@ -114,7 +114,7 @@
 //! ```
 //!
 //! Reading from a channel with a timeout requires to use a Timer together
-//! with the channel. You can use the select! macro to select either and
+//! with the channel. You can use the `select!` macro to select either and
 //! handle the timeout case. This first example will break out of the loop
 //! after 10 seconds no matter what:
 //!