Remove extra space from excercise

This commit is contained in:
Magnus Markling
2022-09-19 21:07:03 +02:00
committed by Nathan Stocks
parent ea93715738
commit 5c0dfcda33

View File

@@ -79,7 +79,7 @@ fn main() {
});
// Using a Receiver channel as an iterator is a convenient way to get values until the channel
// gets closed. A Receiver channel is automatically closed once all Sender channels have been
// gets closed. A Receiver channel is automatically closed once all Sender channels have been
// closed. Both our threads automatically close their Sender channels when they exit and the
// destructors for the channels get automatically called.
for msg in rx {