From 6d51eed1c20a861886f62aad58775c9c1d61c743 Mon Sep 17 00:00:00 2001 From: Dr Maxim Orlovsky Date: Sat, 4 May 2024 19:04:09 +0200 Subject: [PATCH] chore: fix doc = hidden issue --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/resource.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 86336eb..4581495 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -106,7 +106,7 @@ dependencies = [ [[package]] name = "io-reactor" -version = "0.5.0" +version = "0.5.1" dependencies = [ "amplify", "crossbeam-channel", diff --git a/Cargo.toml b/Cargo.toml index 0164759..95736cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 ", diff --git a/src/resource.rs b/src/resource.rs index 431c056..b3fcaa6 100644 --- a/src/resource.rs +++ b/src/resource.rs @@ -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; - #[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. ///