diff --git a/README.md b/README.md index 21aa980..19554c0 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ COMMIT; ### Partial Indexes -Use [partial indexes](https://www.postgresql.org/docs/current/indexes-partial.html) to speed up queries with a `WHERE` clause +Consider [partial indexes](https://www.postgresql.org/docs/current/indexes-partial.html) for queries with a `WHERE` clause ```sql CREATE INDEX ON table USING ivfflat (column) WHERE (condition = true);