Skip to content
This repository was archived by the owner on Sep 4, 2024. It is now read-only.

Commit

Permalink
fix small copy/paste comment
Browse files Browse the repository at this point in the history
The UNIX Stream example header comment had the same top comment mentioning `std::net::TcpListener`
  • Loading branch information
linuxlizard authored Aug 3, 2024
1 parent 544f53d commit 083152f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/simple_uds.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: CC0-1.0

//! This module implements a synchronous transport over a raw [`std::net::TcpListener`].
//! This module implements a synchronous transport over a raw [`std::net::UnixStream`].
use std::os::unix::net::UnixStream;
use std::{error, fmt, io, path, time};
Expand Down

0 comments on commit 083152f

Please sign in to comment.