@@ -195,11 +195,11 @@ pub type MemoryDB<H> = memory_db::MemoryDB<H, memory_db::HashKey<H>, trie_db::DB
195195/// Reexport from `hash_db`, with genericity set for `Hasher` trait.
196196pub type GenericMemoryDB < H , KF > = memory_db:: MemoryDB < H , KF , trie_db:: DBValue > ;
197197
198- /// Persistent trie database read-access interface for the a given hasher.
198+ /// Persistent trie database read-access interface for a given hasher.
199199pub type TrieDB < ' a , ' cache , L > = trie_db:: TrieDB < ' a , ' cache , L > ;
200200/// Builder for creating a [`TrieDB`].
201201pub 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.
203203pub type TrieDBMut < ' a , L > = trie_db:: TrieDBMut < ' a , L > ;
204204/// Builder for creating a [`TrieDBMut`].
205205pub type TrieDBMutBuilder < ' a , L > = trie_db:: TrieDBMutBuilder < ' a , L > ;
@@ -212,17 +212,17 @@ pub type TrieHash<L> = <<L as TrieLayout>::Hash as Hasher>::Out;
212212pub mod trie_types {
213213 use super :: * ;
214214
215- /// Persistent trie database read-access interface for the a given hasher.
215+ /// Persistent trie database read-access interface for a given hasher.
216216 ///
217217 /// Read only V1 and V0 are compatible, thus we always use V1.
218218 pub type TrieDB < ' a , ' cache , H > = super :: TrieDB < ' a , ' cache , LayoutV1 < H > > ;
219219 /// Builder for creating a [`TrieDB`].
220220 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.
222222 pub type TrieDBMutV0 < ' a , H > = super :: TrieDBMut < ' a , LayoutV0 < H > > ;
223223 /// Builder for creating a [`TrieDBMutV0`].
224224 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.
226226 pub type TrieDBMutV1 < ' a , H > = super :: TrieDBMut < ' a , LayoutV1 < H > > ;
227227 /// Builder for creating a [`TrieDBMutV1`].
228228 pub type TrieDBMutBuilderV1 < ' a , H > = super :: TrieDBMutBuilder < ' a , LayoutV1 < H > > ;
0 commit comments