Skip to content

Commit e6cacc4

Browse files
authored
Remove outdated fast field documentation (#2145)
1 parent 48d4847 commit e6cacc4

File tree

4 files changed

+0
-12
lines changed

4 files changed

+0
-12
lines changed

src/schema/bytes_options.rs

-3
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,6 @@ impl BytesOptions {
8282
/// Set the field as a fast field.
8383
///
8484
/// Fast fields are designed for random access.
85-
/// Access time are similar to a random lookup in an array.
86-
/// If more than one value is associated with a fast field, only the last one is
87-
/// kept.
8885
#[must_use]
8986
pub fn set_fast(mut self) -> BytesOptions {
9087
self.fast = true;

src/schema/date_time_options.rs

-3
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,6 @@ impl DateOptions {
8181
/// Set the field as a fast field.
8282
///
8383
/// Fast fields are designed for random access.
84-
/// Access time are similar to a random lookup in an array.
85-
/// If more than one value is associated with a fast field, only the last one is
86-
/// kept.
8784
#[must_use]
8885
pub fn set_fast(mut self) -> DateOptions {
8986
self.fast = true;

src/schema/ip_options.rs

-3
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,6 @@ impl IpAddrOptions {
8383
/// Set the field as a fast field.
8484
///
8585
/// Fast fields are designed for random access.
86-
/// Access time are similar to a random lookup in an array.
87-
/// If more than one value is associated with a fast field, only the last one is
88-
/// kept.
8986
#[must_use]
9087
pub fn set_fast(mut self) -> Self {
9188
self.fast = true;

src/schema/numeric_options.rs

-3
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,6 @@ impl NumericOptions {
123123
/// Set the field as a fast field.
124124
///
125125
/// Fast fields are designed for random access.
126-
/// Access time are similar to a random lookup in an array.
127-
/// If more than one value is associated with a fast field, only the last one is
128-
/// kept.
129126
#[must_use]
130127
pub fn set_fast(mut self) -> NumericOptions {
131128
self.fast = true;

0 commit comments

Comments
 (0)