Skip to content

Commit

Permalink
net: hide net::unix::datagram module from docs (#3775)
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e authored May 9, 2021
1 parent 8324317 commit 9ff7d8c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tokio/src/net/unix/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
//! Unix domain socket utility types

// This module does not currently provide any public API, but it was
// unintentionally defined as a public module. Hide it from the documentation
// instead of changing it to a private module to avoid breakage.
#[doc(hidden)]
pub mod datagram;

pub(crate) mod listener;
Expand Down

0 comments on commit 9ff7d8c

Please sign in to comment.