Skip to content

Commit

Permalink
chore: fix doc = hidden issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed May 4, 2024
1 parent 7819516 commit 6d51eed
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "io-reactor"
version = "0.5.0"
version = "0.5.1"
description = "Concurrent I/O resource management using reactor pattern"
authors = [
"Dr. Maxim Orlovsky <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion src/resource.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ pub trait WriteAtomic: io::Write {
/// If the buffer contained any data before this operation.
fn empty_write_buf(&mut self) -> io::Result<bool>;

#[doc = hidden]
#[doc(hidden)]
/// Writes to the resource in a non-blocking way, buffering the data if necessary - or failing
/// with a system-level error.
///
Expand Down

0 comments on commit 6d51eed

Please sign in to comment.