From 756156beaf4587eb410a0f671ee1fbc84db37c8d Mon Sep 17 00:00:00 2001 From: Paul Masurel Date: Thu, 17 Aug 2023 17:47:45 +0900 Subject: [PATCH] Fix doc --- src/schema/bytes_options.rs | 2 +- src/schema/date_time_options.rs | 2 +- src/schema/numeric_options.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/schema/bytes_options.rs b/src/schema/bytes_options.rs index 9a7afff2e..91d4286b7 100644 --- a/src/schema/bytes_options.rs +++ b/src/schema/bytes_options.rs @@ -79,7 +79,7 @@ impl BytesOptions { self } - /// Set the field as a single-valued fast field. + /// Set the field as a fast field. /// /// Fast fields are designed for random access. /// Access time are similar to a random lookup in an array. diff --git a/src/schema/date_time_options.rs b/src/schema/date_time_options.rs index a7181bccb..112e3679f 100644 --- a/src/schema/date_time_options.rs +++ b/src/schema/date_time_options.rs @@ -78,7 +78,7 @@ impl DateOptions { self } - /// Set the field as a single-valued fast field. + /// Set the field as a fast field. /// /// Fast fields are designed for random access. /// Access time are similar to a random lookup in an array. diff --git a/src/schema/numeric_options.rs b/src/schema/numeric_options.rs index 97a2ea5ec..d01688ecc 100644 --- a/src/schema/numeric_options.rs +++ b/src/schema/numeric_options.rs @@ -120,7 +120,7 @@ impl NumericOptions { self } - /// Set the field as a single-valued fast field. + /// Set the field as a fast field. /// /// Fast fields are designed for random access. /// Access time are similar to a random lookup in an array.