diff options
-rw-r--r-- | doc/src/sgml/hstore.sgml | 4 | ||||
-rw-r--r-- | doc/src/sgml/release-13.sgml | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/doc/src/sgml/hstore.sgml b/doc/src/sgml/hstore.sgml index 9173f27dbef..fd75e92790b 100644 --- a/doc/src/sgml/hstore.sgml +++ b/doc/src/sgml/hstore.sgml @@ -740,10 +740,10 @@ CREATE INDEX hidx ON testhstore USING GIN (h); <para> Example of creating such an index with a signature length of 32 bytes: - </para> <programlisting> - CREATE INDEX hidx ON testhstore USING GIST (h gist_hstore_ops(siglen=32)); +CREATE INDEX hidx ON testhstore USING GIST (h gist_hstore_ops(siglen=32)); </programlisting> + </para> <para> <type>hstore</type> also supports <type>btree</type> or <type>hash</type> indexes for diff --git a/doc/src/sgml/release-13.sgml b/doc/src/sgml/release-13.sgml index 8c0dc5a2a84..74b91d5a3ff 100644 --- a/doc/src/sgml/release-13.sgml +++ b/doc/src/sgml/release-13.sgml @@ -115,9 +115,9 @@ Author: Thomas Munro <tmunro@postgresql.org> old values to new ones can be done using: </para> - <programlisting> - SELECT round(sum(OLD / n::float)) FROM generate_series(1, OLD) s(n); - </programlisting> +<programlisting> +SELECT round(sum(OLD / n::float)) FROM generate_series(1, OLD) s(n); +</programlisting> </listitem> <listitem> |