@@ -195,11 +195,11 @@ pub type MemoryDB<H> = memory_db::MemoryDB<H, memory_db::HashKey<H>, trie_db::DB
195
195
/// Reexport from `hash_db`, with genericity set for `Hasher` trait.
196
196
pub type GenericMemoryDB < H , KF > = memory_db:: MemoryDB < H , KF , trie_db:: DBValue > ;
197
197
198
- /// Persistent trie database read-access interface for the a given hasher.
198
+ /// Persistent trie database read-access interface for a given hasher.
199
199
pub type TrieDB < ' a , ' cache , L > = trie_db:: TrieDB < ' a , ' cache , L > ;
200
200
/// Builder for creating a [`TrieDB`].
201
201
pub type TrieDBBuilder < ' a , ' cache , L > = trie_db:: TrieDBBuilder < ' a , ' cache , L > ;
202
- /// Persistent trie database write-access interface for the a given hasher.
202
+ /// Persistent trie database write-access interface for a given hasher.
203
203
pub type TrieDBMut < ' a , L > = trie_db:: TrieDBMut < ' a , L > ;
204
204
/// Builder for creating a [`TrieDBMut`].
205
205
pub type TrieDBMutBuilder < ' a , L > = trie_db:: TrieDBMutBuilder < ' a , L > ;
@@ -212,17 +212,17 @@ pub type TrieHash<L> = <<L as TrieLayout>::Hash as Hasher>::Out;
212
212
pub mod trie_types {
213
213
use super :: * ;
214
214
215
- /// Persistent trie database read-access interface for the a given hasher.
215
+ /// Persistent trie database read-access interface for a given hasher.
216
216
///
217
217
/// Read only V1 and V0 are compatible, thus we always use V1.
218
218
pub type TrieDB < ' a , ' cache , H > = super :: TrieDB < ' a , ' cache , LayoutV1 < H > > ;
219
219
/// Builder for creating a [`TrieDB`].
220
220
pub type TrieDBBuilder < ' a , ' cache , H > = super :: TrieDBBuilder < ' a , ' cache , LayoutV1 < H > > ;
221
- /// Persistent trie database write-access interface for the a given hasher.
221
+ /// Persistent trie database write-access interface for a given hasher.
222
222
pub type TrieDBMutV0 < ' a , H > = super :: TrieDBMut < ' a , LayoutV0 < H > > ;
223
223
/// Builder for creating a [`TrieDBMutV0`].
224
224
pub type TrieDBMutBuilderV0 < ' a , H > = super :: TrieDBMutBuilder < ' a , LayoutV0 < H > > ;
225
- /// Persistent trie database write-access interface for the a given hasher.
225
+ /// Persistent trie database write-access interface for a given hasher.
226
226
pub type TrieDBMutV1 < ' a , H > = super :: TrieDBMut < ' a , LayoutV1 < H > > ;
227
227
/// Builder for creating a [`TrieDBMutV1`].
228
228
pub type TrieDBMutBuilderV1 < ' a , H > = super :: TrieDBMutBuilder < ' a , LayoutV1 < H > > ;
0 commit comments