Skip to content

Commit 6cb6342

Browse files
committed
fmt
1 parent 1a0a3db commit 6cb6342

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/channel.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ compile_error!(
2626
"async_channel_impl = 'tokio' requires tokio runtime, e. g. async_executor_impl = 'tokio'"
2727
);
2828

29-
pub use bounded::{bounded, BoundedStream, Receiver, RecvError, SendError, Sender, TryRecvError, TrySendError};
29+
pub use bounded::{
30+
bounded, BoundedStream, Receiver, RecvError, SendError, Sender, TryRecvError, TrySendError,
31+
};
3032
pub use oneshot::{oneshot, OneShotReceiver, OneShotRecvError, OneShotSender, OneShotTryRecvError};
3133
pub use unbounded::{
3234
unbounded, UnboundedReceiver, UnboundedRecvError, UnboundedSendError, UnboundedSender,

0 commit comments

Comments
 (0)