1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-26 12:21:12 +03:00

docs: consistently uppercase index method and add spacing

Consistently uppercase index method names, e.g. GIN, and add space after
the index method name and the parentheses enclosing the column names.
This commit is contained in:
Bruce Momjian
2015-05-15 11:42:29 -04:00
parent 9feaba28e2
commit f6d65f0c70
10 changed files with 23 additions and 23 deletions

View File

@ -220,7 +220,7 @@
To use it, mention the class name in <command>CREATE INDEX</>,
for example
<programlisting>
CREATE INDEX ON my_table USING gist (my_inet_column inet_ops);
CREATE INDEX ON my_table USING GIST (my_inet_column inet_ops);
</programlisting>
</para>