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

Commit

Permalink
Merge #126: fix small copy/paste comment
Browse files Browse the repository at this point in the history
07a0310 Fix UnixStream path in docstring (David Poole)
083152f fix small copy/paste comment (David Poole)

Pull request description:

  The UNIX Stream example header comment had the same top comment mentioning `std::net::TcpListener`

ACKs for top commit:
  apoelstra:
    ACK 07a0310 successfully ran local tests

Tree-SHA512: 9d758397b817406084be10225d4b4bbc0a9ba54454f0ee253bd2e7430421b2b9e8c2290287819044e6fbbf7be72ad4dca57fc76c5ec3f7970a169113c80afd57
  • Loading branch information
apoelstra committed Aug 5, 2024
2 parents 544f53d + 07a0310 commit fbe2678
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::os::unix::net::UnixStream`].
use std::os::unix::net::UnixStream;
use std::{error, fmt, io, path, time};
Expand Down

0 comments on commit fbe2678

Please sign in to comment.