From b361315a67ffe9d78412eb5aaef39323946a0277 Mon Sep 17 00:00:00 2001 From: Shikhar Bhushan Date: Thu, 15 Jul 2021 22:55:47 -0400 Subject: [PATCH] FilterCollector doc fix Other types supported since https://github.com/tantivy-search/tantivy/pull/953/files --- src/collector/filter_collector_wrapper.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/collector/filter_collector_wrapper.rs b/src/collector/filter_collector_wrapper.rs index f1246be9d..b5fc8b6d9 100644 --- a/src/collector/filter_collector_wrapper.rs +++ b/src/collector/filter_collector_wrapper.rs @@ -16,7 +16,7 @@ use crate::fastfield::{DynamicFastFieldReader, FastFieldReader, FastValue}; use crate::schema::Field; use crate::{Score, SegmentReader, TantivyError}; -/// The `FilterCollector` collector filters docs using a u64 fast field value and a predicate. +/// The `FilterCollector` collector filters docs using a fast field value and a predicate. /// Only the documents for which the predicate returned "true" will be passed on to the next collector. /// /// ```rust