Skip to content

Commit 05ed068

Browse files
committed
be more explicit
1 parent 905137b commit 05ed068

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crossbeam-channel/src/channel.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ use crate::utils;
2020
///
2121
/// This channel has a growable buffer that can hold any number of messages at a time.
2222
///
23-
/// For more info on how to use it see [module level documentation](index.html).
23+
/// For more info on how to use the channel see [module level documentation](index.html).
2424
///
2525
/// # Examples
2626
///
@@ -63,7 +63,7 @@ pub fn unbounded<T>() -> (Sender<T>, Receiver<T>) {
6363
/// A special case is zero-capacity channel, which cannot hold any messages. Instead, send and
6464
/// receive operations must appear at the same time in order to pair up and pass the message over.
6565
///
66-
/// For more info on how to use it see [module level documentation](index.html).
66+
/// For more info on how to use the channel see [module level documentation](index.html).
6767
///
6868
/// # Examples
6969
///

0 commit comments

Comments
 (0)