From 2771e0ed25540a3e738767c4e36670e090f5438d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Gill=C3=A9?= Date: Mon, 4 Mar 2024 20:43:33 +0100 Subject: [PATCH] Fix Godoc of Query() method --- collection.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collection.go b/collection.go index 86e4627..256d339 100644 --- a/collection.go +++ b/collection.go @@ -247,7 +247,7 @@ func (c *Collection) Count() int { return len(c.documents) } -// Performs a nearest neighbors query on a collection specified by UUID. +// Performs an exhaustive nearest neighbor search on the collection. // // - queryText: The text to search for. // - nResults: The number of results to return. Must be > 0.