From d36e0a954986c35565e545886dd500ae4d4d19cd Mon Sep 17 00:00:00 2001 From: saroh <325288+saroh@users.noreply.github.com> Date: Thu, 3 Mar 2022 17:43:18 +0100 Subject: [PATCH] fix fastfield doc --- src/fastfield/mod.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/fastfield/mod.rs b/src/fastfield/mod.rs index 9c780c893..be5285d39 100644 --- a/src/fastfield/mod.rs +++ b/src/fastfield/mod.rs @@ -12,11 +12,10 @@ //! //! //! Fields have to be declared as `FAST` in the schema. -//! Currently supported fields are: u64, i64 and f64. -//! u8 are supported for advanced usage. +//! Currently supported fields are: u64, i64, f64 and bytes. //! -//! They are stored in a bit-packed fashion so that their -//! memory usage is directly linear with the amplitude of the +//! u64, i64 and f64 fields are stored in a bit-packed fashion so that +//! their memory usage is directly linear with the amplitude of the //! values stored. //! //! Read access performance is comparable to that of an array lookup.