aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2020-06-07 13:34:37 +0200
committerPeter Eisentraut <peter@eisentraut.org>2020-06-07 13:34:37 +0200
commit9ac0a26210901a5869fd7ea83ab1c59489c1aeef (patch)
tree433edeaeaf0d5a2d853bf31b0d53b99cd6aea25e
parent4c6f70cd33ac395dea1acca7dabf4cb8556235e7 (diff)
downloadpostgresql-9ac0a26210901a5869fd7ea83ab1c59489c1aeef.tar.gz
postgresql-9ac0a26210901a5869fd7ea83ab1c59489c1aeef.zip
doc: Fix up spacing around verbatim DocBook elements
-rw-r--r--doc/src/sgml/hstore.sgml4
-rw-r--r--doc/src/sgml/release-13.sgml6
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>