diff --git a/crates/milli/src/update/new/extract/faceted/extract_facets.rs b/crates/milli/src/update/new/extract/faceted/extract_facets.rs index 490dada65..f2132ce38 100644 --- a/crates/milli/src/update/new/extract/faceted/extract_facets.rs +++ b/crates/milli/src/update/new/extract/faceted/extract_facets.rs @@ -318,7 +318,7 @@ impl<'doc> DelAddFacetValue<'doc> { docid: DocumentId, sender: &FieldIdDocidFacetSender, doc_alloc: &Bump, - ) -> std::result::Result<(), crossbeam_channel::SendError<()>> { + ) -> crate::Result<()> { let mut buffer = bumpalo::collections::Vec::new_in(doc_alloc); for ((fid, value), deladd) in self.strings { if let Ok(s) = std::str::from_utf8(&value) {