diff options
author | Michael Paquier | 2020-07-08 01:41:53 +0000 |
---|---|---|
committer | Michael Paquier | 2020-07-08 01:41:53 +0000 |
commit | d92be269103acaf58e87ba4ba732eac0e3c4d78a (patch) | |
tree | 705a7c37d4c7b67aed3d4d3c515e2bf71598f0f3 | |
parent | 3f96af4619c8b129ec8d5f4fb961df4310999383 (diff) |
doc: Fix inconsistencies in GIN, BRIN and SP-GiST for optional opclass methods
The GIN and SP-GiST parts were out-of-sync since the changes of 14903f2,
and the BRIN part was wrong since its introduction in 15cb2bd.
Author: Guillaume Lelarge
Reviewed-by: Daniel Gustafsson
Discussion: https://postgr.es/m/CAECtzeXKvEPEr967h0PRYRi39uTmdEms=oUtc_PWGjZRNN1prw@mail.gmail.com
Backpatch-through: 13
-rw-r--r-- | doc/src/sgml/brin.sgml | 2 | ||||
-rw-r--r-- | doc/src/sgml/gin.sgml | 4 | ||||
-rw-r--r-- | doc/src/sgml/spgist.sgml | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/brin.sgml b/doc/src/sgml/brin.sgml index 4c5eeb875f..55b6272db6 100644 --- a/doc/src/sgml/brin.sgml +++ b/doc/src/sgml/brin.sgml @@ -585,7 +585,7 @@ typedef struct BrinOpcInfo <para> Since both key extraction of indexed values and representation of the - key in <acronym>GIN</acronym> are flexible, they may depend on + key in <acronym>BRIN</acronym> are flexible, they may depend on user-specified parameters. </para> </listitem> diff --git a/doc/src/sgml/gin.sgml b/doc/src/sgml/gin.sgml index 7a8c18a449..07114f7719 100644 --- a/doc/src/sgml/gin.sgml +++ b/doc/src/sgml/gin.sgml @@ -379,7 +379,7 @@ </para> <para> - Optionally, an operator class for <acronym>GIN</acronym> can supply the + An operator class for <acronym>GIN</acronym> can optionally supply the following methods: <variablelist> @@ -406,7 +406,7 @@ <term><function>void options(local_relopts *relopts)</function></term> <listitem> <para> - Defines set of user-visible parameters that control operator class + Defines a set of user-visible parameters that control operator class behavior. </para> diff --git a/doc/src/sgml/spgist.sgml b/doc/src/sgml/spgist.sgml index d9ecfe74ed..5d6e893d49 100644 --- a/doc/src/sgml/spgist.sgml +++ b/doc/src/sgml/spgist.sgml @@ -881,7 +881,7 @@ typedef struct spgLeafConsistentOut <term><function>options</function></term> <listitem> <para> - Defines set of user-visible parameters that control operator class + Defines a set of user-visible parameters that control operator class behavior. </para> |