]> git.lizzy.rs Git - rust.git/commitdiff
std: change select! docs from 'ports' to 'receivers'
authorSean McArthur <sean.monstar@gmail.com>
Tue, 27 May 2014 14:20:06 +0000 (07:20 -0700)
committerSean McArthur <sean.monstar@gmail.com>
Tue, 27 May 2014 14:20:06 +0000 (07:20 -0700)
src/libstd/macros.rs

index 1c616bdcbbf7c774b5f09d2a61f6d2c0a31d87cc..28b4552fd4c011ba5ae575a9bdde62659fdaf41c 100644 (file)
@@ -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
 ///