mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-08 03:01:12 -04:00
docs: fix typo in documentation comments (#17207)
This commit is contained in:
@@ -68,7 +68,7 @@ where
|
||||
precompile_cache_disabled: bool,
|
||||
/// Precompile cache map.
|
||||
precompile_cache_map: PrecompileCacheMap<SpecFor<Evm>>,
|
||||
/// A cleared sparse trie, kept around to be re-used for the state root computation so that
|
||||
/// A cleared sparse trie, kept around to be reused for the state root computation so that
|
||||
/// allocations can be minimized.
|
||||
sparse_trie: Option<SparseTrie>,
|
||||
_marker: std::marker::PhantomData<N>,
|
||||
|
||||
@@ -214,7 +214,7 @@ pub trait SparseTrieInterface: Default + Debug {
|
||||
/// Removes all nodes and values from the trie, resetting it to a blank state
|
||||
/// with only an empty root node. This is used when a storage root is deleted.
|
||||
///
|
||||
/// This should not be used when intending to re-use the trie for a fresh account/storage root;
|
||||
/// This should not be used when intending to reuse the trie for a fresh account/storage root;
|
||||
/// use `clear` for that.
|
||||
///
|
||||
/// Note: All previously tracked changes to the trie are also removed.
|
||||
|
||||
Reference in New Issue
Block a user