about summary refs log tree commit diff
path: root/src/libstd/sync/mpsc
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2015-03-31 10:32:53 -0400
committerCorey Farwell <coreyf@rwell.org>2015-03-31 10:32:53 -0400
commit5872ae4a7a76ba67e702323d2de09a86fb5ba692 (patch)
tree9ccfa5b70a0fd2cec016b6abf133b7ab2bb353c6 /src/libstd/sync/mpsc
parentb3317d68910900f135f9f38e43a7a699bc736b4a (diff)
downloadrust-5872ae4a7a76ba67e702323d2de09a86fb5ba692.tar.gz
rust-5872ae4a7a76ba67e702323d2de09a86fb5ba692.zip
Indicate select! is code-like
Diffstat (limited to 'src/libstd/sync/mpsc')
-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:
 //!