Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: Fix typos in pg_trgm docs #6913

Merged
merged 1 commit into from
Feb 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/stdlib/pg_trgm.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ ext::pg_trgm
This extension provides tools for determining similarity of text based on
trigram matching.

Word similarity tools can often suppliment :ref:`full-text search
Word similarity tools can often supplement :ref:`full-text search
<ref_std_fts>`. Full-text search concentrates on matching words and phrases
typically trying to accound for some grammatical variations, while trigram
typically trying to account for some grammatical variations, while trigram
matching analyzes similarity between words. Thus trigram matching can account
for misspelling or words that aren't dictionary words:

Expand Down Expand Up @@ -77,7 +77,7 @@ the following functions:
- :eql:func-desc:`ext::pg_trgm::strict_word_similar`


In addition to the funcitons this extension has two indexes that speed up
In addition to the functions this extension has two indexes that speed up
queries that involve similarity searches: ``ext::pg_trgm::gin`` and
``ext::pg_tgrm::gist``.

Expand Down