updated FatDB description

This commit is contained in:
debris
2016-06-27 13:50:08 +02:00
parent 7904464d24
commit 06cf2a3f41
3 changed files with 7 additions and 5 deletions

View File

@@ -20,8 +20,9 @@ use hashdb::HashDB;
use super::{TrieDBMut, Trie, TrieMut, TrieError};
/// A mutable `Trie` implementation which hashes keys and uses a generic `HashDB` backing database.
/// Additionaly it stores inserted hash-key mappings for later retrieval.
///
/// Use it as a `Trie` or `TrieMut` trait object. You can use `raw()` to get the backing `TrieDBMut` object.
/// Use it as a `Trie` or `TrieMut` trait object.
pub struct FatDBMut<'db> {
raw: TrieDBMut<'db>,
}