From 80206c18c53585bc704021373b3430bea6df7cb2 Mon Sep 17 00:00:00 2001 From: Tamo Date: Thu, 26 Sep 2024 10:08:20 +0200 Subject: [PATCH] Update src/reader.rs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Clément Renault --- src/reader.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/reader.rs b/src/reader.rs index d79ad90e..b4586d64 100644 --- a/src/reader.rs +++ b/src/reader.rs @@ -265,6 +265,7 @@ impl<'t, D: Distance> Reader<'t, D> { } /// Return a [`QueryBuilder`] that lets you configure and execute a search request. + /// /// You must provide the number of items you want to receive. pub fn nns(&self, count: usize) -> QueryBuilder { QueryBuilder { reader: self, count, search_k: None, oversampling: None, candidates: None }