Remove duplicate documentation line

This commit is contained in:
Quetzal Bradley
2025-08-26 23:58:42 +00:00
parent 681e7ab97e
commit 26bae14ea2
2 changed files with 1 additions and 17 deletions

View File

@@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
- Minor fixes to module docs.
- Make MSRV of 1.87.0 explicit.
## [v0.9.1] - 2025-08-19

View File

@@ -77,23 +77,6 @@
),
doc = "- [`Box`][pool::boxed::Box]: Like `std::boxed::Box` but backed by a lock-free memory pool rather than `[global_allocator]`."
)]
#![cfg_attr(
any(
arm_llsc,
all(
target_pointer_width = "32",
any(target_has_atomic = "64", feature = "portable-atomic")
),
all(
target_pointer_width = "64",
any(
all(target_has_atomic = "128", feature = "nightly"),
feature = "portable-atomic"
)
)
),
doc = "- [`Arc`][pool::arc::Arc]: Like `std::sync::Arc` but backed by a lock-free memory pool rather than `[global_allocator]`."
)]
#![cfg_attr(
any(
arm_llsc,