Skip to content

Commit

Permalink
Fix hidden attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
steveklabnik committed Sep 19, 2020
1 parent 3f4e01a commit 8e2b65d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vector/mod.rs
Expand Up @@ -182,7 +182,7 @@ impl<A: Clone> Vector<A> {
///
/// Note that if you didn't specifically construct it with a pool, you'll
/// get back a reference to a pool of size 0.
#[cfg_attr(not(feature = "pool"), doc = "hidden")]
#[cfg_attr(not(feature = "pool"), doc("hidden"))]
pub fn pool(&self) -> &RRBPool<A> {
match self.vector {
Inline(ref pool, _) => pool,
Expand Down

0 comments on commit 8e2b65d

Please sign in to comment.