From fa740efbccbb65b241b935954d1c54d3cc9caadb Mon Sep 17 00:00:00 2001 From: Cholerae Hu Date: Mon, 9 Dec 2024 21:24:43 +0800 Subject: [PATCH] fix bad github link in readme and doc string Signed-off-by: Cholerae Hu --- README.md | 2 +- syncpool/README.md | 2 +- syncpool/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 861360e..2e9d8fa 100644 --- a/README.md +++ b/README.md @@ -5,5 +5,5 @@ code region. In particular, the repo currently have 2 published crates: * [`byte_buffer`](https://github.com/Chopinsky/byte_buffer/blob/master/byte_buffer/README.md): a library for reusing byte array in heavy I/O code; -* [`sync_pool`](https://github.com/Chopinsky/byte_buffer/blob/master/sync_pool/README.md): a library that's more generic for reusing heavy and (usually) heap based +* [`syncpool`](https://github.com/Chopinsky/byte_buffer/blob/master/syncpool/README.md): a library that's more generic for reusing heavy and (usually) heap based data elements. \ No newline at end of file diff --git a/syncpool/README.md b/syncpool/README.md index 6d690ff..63dceb5 100644 --- a/syncpool/README.md +++ b/syncpool/README.md @@ -121,5 +121,5 @@ fn main() { ``` You can find more complex (i.e. practical) use cases in the - [examples](https://github.com/Chopinsky/byte_buffer/tree/master/sync_pool/examples) + [examples](https://github.com/Chopinsky/byte_buffer/tree/master/syncpool/examples) folder. \ No newline at end of file diff --git a/syncpool/src/lib.rs b/syncpool/src/lib.rs index d7b5ce6..043fb2c 100644 --- a/syncpool/src/lib.rs +++ b/syncpool/src/lib.rs @@ -186,7 +186,7 @@ //! pool.put(big_box); //! ``` //! -//! You can find more complex (i.e. practical) use cases in the [examples](https://github.com/Chopinsky/byte_buffer/tree/master/sync_pool/examples) +//! You can find more complex (i.e. practical) use cases in the [examples](https://github.com/Chopinsky/byte_buffer/tree/master/syncpool/examples) //! folder. //!