From 96a5a44632c65f45330c4e5099e064f7071d446b Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Mon, 28 Oct 2024 23:52:16 -0700 Subject: [PATCH] Updated readme [skip ci] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 52ab170..1c5e042 100644 --- a/README.md +++ b/README.md @@ -445,7 +445,7 @@ For multiple columns, consider a [multicolumn index](https://www.postgresql.org/ CREATE INDEX ON items (location_id, category_id); ``` -Exact indexes work well for conditions that match a lower percentage of rows. Otherwise, [approximate indexes](#indexing) can work better. +Exact indexes work well for conditions that match a low percentage of rows. Otherwise, [approximate indexes](#indexing) can work better. ```sql CREATE INDEX ON items USING hnsw (embedding vector_l2_ops);