summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorSean McArthur <sean.monstar@gmail.com>2014-05-27 07:20:06 -0700
committerSean McArthur <sean.monstar@gmail.com>2014-05-27 07:20:06 -0700
commitc710023197afaf66ff1843898cd8a4550e4c9201 (patch)
treec054ca43cbcf2ff6e8d34d9741150ca7a3e1f767 /src/libstd
parent746d086f9322d24fa7b389dd911e204ca35012ae (diff)
downloadrust-c710023197afaf66ff1843898cd8a4550e4c9201.tar.gz
rust-c710023197afaf66ff1843898cd8a4550e4c9201.zip
std: change select! docs from 'ports' to 'receivers'
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/macros.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs
index 1c616bdcbbf..28b4552fd4c 100644
--- a/src/libstd/macros.rs
+++ b/src/libstd/macros.rs
@@ -331,11 +331,11 @@ macro_rules! vec(
 )
 
 
-/// A macro to select an event from a number of ports.
+/// A macro to select an event from a number of receivers.
 ///
 /// This macro is used to wait for the first event to occur on a number of
-/// ports. It places no restrictions on the types of ports given to this macro,
-/// this can be viewed as a heterogeneous select.
+/// receivers. It places no restrictions on the types of receivers given to
+/// this macro, this can be viewed as a heterogeneous select.
 ///
 /// # Example
 ///