Fix documentation errors.

This commit is contained in:
Kris Nuttycombe 2023-03-03 17:02:03 -07:00
parent 6867240e5a
commit 0697df7d95
2 changed files with 7 additions and 11 deletions

View File

@ -772,7 +772,7 @@ impl<H, const DEPTH: u8> BridgeTree<H, DEPTH> {
} }
} }
/// Removes the oldest checkpoin if there are more than `max_checkpoints`. Returns true if /// Removes the oldest checkpoint if there are more than `max_checkpoints`. Returns true if
/// successful and false if there are not enough checkpoints. /// successful and false if there are not enough checkpoints.
fn drop_oldest_checkpoint(&mut self) -> bool { fn drop_oldest_checkpoint(&mut self) -> bool {
if self.checkpoints.len() > self.max_checkpoints { if self.checkpoints.len() > self.max_checkpoints {
@ -1111,11 +1111,9 @@ impl<H: Hashable + Ord + Clone, const DEPTH: u8> BridgeTree<H, DEPTH> {
} }
} }
/// Obtains a witness to the value at the specified position, /// Obtains a witness for the value at the specified leaf position, as of the tree state at the
/// as of the tree state corresponding to the given root. /// given checkpoint depth. Returns `None` if there is no witness information for the requested
/// Returns `None` if there is no available witness to that /// position or if no checkpoint is available at the specified depth.
/// position or if the root does not correspond to a checkpointed
/// root of the tree.
pub fn witness( pub fn witness(
&self, &self,
position: Position, position: Position,

View File

@ -53,11 +53,9 @@ pub trait Tree<H, C> {
/// requested checkpoint depth. /// requested checkpoint depth.
fn root(&self, checkpoint_depth: usize) -> Option<H>; fn root(&self, checkpoint_depth: usize) -> Option<H>;
/// Obtains a witness to the value at the specified position, /// Obtains a witness for the value at the specified leaf position, as of the tree state at the
/// as of the tree state corresponding to the given root. /// given checkpoint depth. Returns `None` if there is no witness information for the requested
/// Returns `None` if there is no available witness to that /// position or if no checkpoint is available at the specified depth.
/// position or if the root does not correspond to a checkpointed
/// root of the tree.
fn witness(&self, position: Position, checkpoint_depth: usize) -> Option<Vec<H>>; fn witness(&self, position: Position, checkpoint_depth: usize) -> Option<Vec<H>>;
/// Marks the value at the specified position as a value we're no longer /// Marks the value at the specified position as a value we're no longer