Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion syncpool/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion syncpool/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
//!

Expand Down