Rename FieldsDistribution into FieldDistribution

This commit is contained in:
Clémentine Urquizar
2021-06-21 15:57:41 +02:00
parent b120c32cad
commit daef43f504
4 changed files with 10 additions and 10 deletions

View File

@ -50,7 +50,7 @@ pub type Attribute = u32;
pub type DocumentId = u32;
pub type FieldId = u8;
pub type Position = u32;
pub type FieldsDistribution = BTreeMap<String, u64>;
pub type FieldDistribution = BTreeMap<String, u64>;
type MergeFn<E> = for<'a> fn(&[u8], &[Cow<'a, [u8]>]) -> StdResult<Vec<u8>, E>;