Fix all `cargo doc` warnings about dangling refs.

This commit is contained in:
Nate Wilcox 2023-06-02 14:16:05 -06:00 committed by Kris Nuttycombe
parent 6e5c50d149
commit c0b8c4d783
1 changed files with 2 additions and 2 deletions

View File

@ -294,8 +294,8 @@ impl<H: Hashable + Clone + PartialEq> PrunableTree<H> {
}
}
/// Returns a vector of the positions of [`Node::Leaf`] values in the tree having
/// [`Retention::Marked`] retention.
/// Returns a vector of the positions of [`Node::Leaf`] values in the tree having [`MARKED`](RetentionFlags::MARKED)
/// retention.
///
/// Computing the set of marked positions requires a full traversal of the tree, and so should
/// be considered to be a somewhat expensive operation.