diff --git a/crates/fj-kernel/src/storage/store.rs b/crates/fj-kernel/src/storage/store.rs index 2366e3e11..59cdc195c 100644 --- a/crates/fj-kernel/src/storage/store.rs +++ b/crates/fj-kernel/src/storage/store.rs @@ -38,6 +38,9 @@ pub struct Store { impl Store { /// Construct a new instance of `Store` + /// + /// Equivalent to calling [`Store::with_block_size`] with a default block + /// size. pub fn new() -> Self { Self::with_block_size(16384) }