@@ -274,10 +274,6 @@ where
274274 /// the receiver's grafted-pin derivation requires chunk-aligned, absorbed state at the start
275275 /// of the range, and locations above this boundary place that derivation in the
276276 /// delayed-merge-unstable region (relevant for MMB).
277- ///
278- /// For families without delayed merges this is the inactivity floor rounded down to the
279- /// nearest chunk boundary. For families with delayed merges (MMB) it is held back further,
280- /// until the youngest pruned chunk-pair's height-`gh+1` parent has been born in the ops tree.
281277 pub fn sync_boundary ( & self ) -> Result < Location < F > , Error < F > > {
282278 self . settled_bitmap_prune_loc ( )
283279 }
@@ -397,14 +393,15 @@ where
397393 /// Prunes historical operations prior to `prune_loc`. This does not affect the db's root or
398394 /// snapshot.
399395 ///
400- /// Pruning is clipped to the settled bitmap boundary (see [`Db::sync_boundary`]): the ops
401- /// log's lower bound is never advanced past where the grafting overlay has been pruned. The
402- /// bitmap and grafted tree advance to that same settled boundary regardless of `prune_loc`.
396+ /// Pruning is clipped to the settled bitmap boundary (see [`Db::sync_boundary`]): the ops log's
397+ /// lower bound is never advanced past where the grafting overlay has been pruned. The bitmap
398+ /// and grafted tree advance to that same settled boundary regardless of `prune_loc`.
403399 ///
404400 /// # Errors
405401 ///
406402 /// - Returns [Error::PruneBeyondMinRequired] if `prune_loc` > inactivity floor.
407- /// - Returns [`crate::merkle::Error::LocationOverflow`] if `prune_loc` > [crate::merkle::Family::MAX_LEAVES].
403+ /// - Returns [`crate::merkle::Error::LocationOverflow`] if `prune_loc` >
404+ /// [crate::merkle::Family::MAX_LEAVES].
408405 pub async fn prune ( & mut self , prune_loc : Location < F > ) -> Result < ( ) , Error < F > > {
409406 let inactivity_floor = self . inactivity_floor_loc ( ) ;
410407 if prune_loc > inactivity_floor {
0 commit comments