1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-01-20 21:18:26 +02:00

Remove unused import (use) (#1303)

This should be a clean pull request with just the required diff
This commit is contained in:
Nick Radcliffe 2023-10-05 10:17:48 +01:00 committed by GitHub
parent 2072ed022b
commit c93a4bc20c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,6 @@ are connected via the channel, but you only see the end-points.
```rust,editable
use std::sync::mpsc;
use std::thread;
fn main() {
let (tx, rx) = mpsc::channel();