diff --git a/README.md b/README.md index 0a3a863..c15ea05 100644 --- a/README.md +++ b/README.md @@ -97,7 +97,7 @@ Get the nearest neighbors to a vector SELECT * FROM items ORDER BY embedding <-> '[3,1,2]' LIMIT 5; ``` -Get the nearest neighbors to another row +Get the nearest neighbors to a row ```sql SELECT * FROM items WHERE id != 1 ORDER BY embedding <-> (SELECT embedding FROM items WHERE id = 1) LIMIT 5;