doc: Whitespace fixes in man pages
authorPeter Eisentraut <[email protected]>
Wed, 14 Jun 2017 17:55:43 +0000 (13:55 -0400)
committerPeter Eisentraut <[email protected]>
Wed, 14 Jun 2017 17:56:04 +0000 (13:56 -0400)
15 files changed:
doc/src/sgml/ref/alter_aggregate.sgml
doc/src/sgml/ref/alter_publication.sgml
doc/src/sgml/ref/alter_subscription.sgml
doc/src/sgml/ref/alter_system.sgml
doc/src/sgml/ref/alter_type.sgml
doc/src/sgml/ref/create_access_method.sgml
doc/src/sgml/ref/create_publication.sgml
doc/src/sgml/ref/create_subscription.sgml
doc/src/sgml/ref/drop_aggregate.sgml
doc/src/sgml/ref/drop_policy.sgml
doc/src/sgml/ref/drop_publication.sgml
doc/src/sgml/ref/drop_statistics.sgml
doc/src/sgml/ref/drop_subscription.sgml
doc/src/sgml/ref/import_foreign_schema.sgml
doc/src/sgml/ref/insert.sgml

index 3aa7c259da187b2b481f560892116376f8596b34..7b7616ca014743f0b48b340db3348112cf2e6e67 100644 (file)
@@ -179,8 +179,7 @@ ALTER AGGREGATE mypercentile(float8 ORDER BY integer) SET SCHEMA myschema;
    This will work too:
 <programlisting>
 ALTER AGGREGATE mypercentile(float8, integer) SET SCHEMA myschema;
-</programlisting>
-  </para>
+</programlisting></para>
  </refsect1>
 
  <refsect1>
index cc5d92f0410ad1cd66411c434d19b95fa672684a..f064ec5f3207f1ba73e71a0d222c0c9898338943 100644 (file)
@@ -140,8 +140,7 @@ ALTER PUBLICATION noinsert SET (publish = 'update, delete');
    Add some tables to the publication:
 <programlisting>
 ALTER PUBLICATION mypublication ADD TABLE users, departments;
-</programlisting>
-  </para>
+</programlisting></para>
  </refsect1>
 
  <refsect1>
index bead99622e4c28d452f001e7b77da9f492a42537..b1b7765d76ca3233e5ea082025f3aa5834da49a4 100644 (file)
@@ -204,8 +204,7 @@ ALTER SUBSCRIPTION mysub SET PUBLICATION insert_only;
    Disable (stop) the subscription:
 <programlisting>
 ALTER SUBSCRIPTION mysub DISABLE;
-</programlisting>
-  </para>
+</programlisting></para>
  </refsect1>
 
  <refsect1>
index c1d27b6564e3243890a910a596c46cde84669cf6..b234793f3e9b0ea3be2d1ed8f09053696119d180 100644 (file)
@@ -119,8 +119,7 @@ ALTER SYSTEM SET wal_level = replica;
    in <filename>postgresql.conf</>:
 <programlisting>
 ALTER SYSTEM RESET wal_level;
-</programlisting>
-  </para>
+</programlisting></para>
  </refsect1>
 
  <refsect1>
index fdb4f3367d576071a1315d600fa75a6c22485590..d65f70f674130f534a16b5de808841b794698c89 100644 (file)
@@ -356,8 +356,7 @@ ALTER TYPE colors ADD VALUE 'orange' AFTER 'red';
    To rename an enum value:
 <programlisting>
 ALTER TYPE colors RENAME VALUE 'purple' TO 'mauve';
-</programlisting>
-  </para>
+</programlisting></para>
  </refsect1>
 
  <refsect1>
index 0a30e6ea3c7454d1b8df80b3369f8bcf71007667..891926dba547392bbf226384106a53b369dde05b 100644 (file)
@@ -93,8 +93,7 @@ CREATE ACCESS METHOD <replaceable class="parameter">name</replaceable>
    handler function <literal>heptree_handler</>:
 <programlisting>
 CREATE ACCESS METHOD heptree TYPE INDEX HANDLER heptree_handler;
-</programlisting>
-  </para>
+</programlisting></para>
  </refsect1>
 
  <refsect1>
index 48be4763747db90436e5ca8915c76d5fbdbb89cc..c5299dd74e5b08578e346acd0ec4bbd6c2a34067 100644 (file)
@@ -191,8 +191,7 @@ CREATE PUBLICATION alltables FOR ALL TABLES;
 <programlisting>
 CREATE PUBLICATION insert_only FOR TABLE mydata
     WITH (publish = 'insert');
-</programlisting>
-  </para>
+</programlisting></para>
  </refsect1>
 
  <refsect1>
index dd5eda043a54a822b31e59ff4f96b0d40ad09a53..77bf87681b92043aea99928efe8fab77630601cf 100644 (file)
@@ -265,8 +265,7 @@ CREATE SUBSCRIPTION mysub
          CONNECTION 'host=192.168.1.50 port=5432 user=foo dbname=foodb'
         PUBLICATION insert_only
                WITH (enabled = false);
-</programlisting>
-  </para>
+</programlisting></para>
  </refsect1>
 
  <refsect1>
index 631b578df7efbb9ee68b06c9feb3d84ed9b4b9c4..dde1ea244495e241897783d8b0b98a949e17cf80 100644 (file)
@@ -160,8 +160,7 @@ DROP AGGREGATE myrank(VARIADIC "any" ORDER BY VARIADIC "any");
    To remove multiple aggregate functions in one command:
 <programlisting>
 DROP AGGREGATE myavg(integer), myavg(bigint);
-</programlisting>
-  </para>
+</programlisting></para>
 </refsect1>
 
  <refsect1>
index 69c87c0ade75ede0f577a8a9f15aa87a7a067c0b..f47469210546fd1684d7517a7d9a710317f28a1a 100644 (file)
@@ -96,8 +96,7 @@ DROP POLICY [ IF EXISTS ] <replaceable class="parameter">name</replaceable> ON <
 
 <programlisting>
 DROP POLICY p1 ON my_table;
-</programlisting>
-  </para>
+</programlisting></para>
  </refsect1>
 
  <refsect1>
index 1a1be579ad868e998e538d0109a2462481d3ab5c..517d1422517311612b976680e7e56cb0fe0b6775 100644 (file)
@@ -82,9 +82,7 @@ DROP PUBLICATION [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceable>
    Drop a publication:
 <programlisting>
 DROP PUBLICATION mypublication;
-</programlisting>
-  </para>
-
+</programlisting></para>
  </refsect1>
 
  <refsect1>
index ef659fca61444d970e3a7c101bf88b8225af8899..37fc4025891734a35a2238e659e967a7d574c9a0 100644 (file)
@@ -73,9 +73,7 @@ DROP STATISTICS [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceable>
 DROP STATISTICS IF EXISTS
     accounting.users_uid_creation,
     public.grants_user_role;
-</programlisting>
-  </para>
-
+</programlisting></para>
  </refsect1>
 
  <refsect1>
index 42068d617bcafd08c5fc13104838b1c289649fd2..f535c000c4094e9bfb305f4a81a43261fe52e8e2 100644 (file)
@@ -102,9 +102,7 @@ DROP SUBSCRIPTION [ IF EXISTS ] <replaceable class="parameter">name</replaceable
    Drop a subscription:
 <programlisting>
 DROP SUBSCRIPTION mysub;
-</programlisting>
-  </para>
-
+</programlisting></para>
  </refsect1>
 
  <refsect1>
index 331b362db7c13b1b63c20fd1736201954d9d1da2..b73dee9439a74c6e5a3d743e7c464f56a92f3217 100644 (file)
@@ -141,9 +141,7 @@ IMPORT FOREIGN SCHEMA foreign_films
 <programlisting>
 IMPORT FOREIGN SCHEMA foreign_films LIMIT TO (actors, directors)
     FROM SERVER film_server INTO films;
-</programlisting>
-   </para>
-
+</programlisting></para>
  </refsect1>
 
  <refsect1 id="SQL-IMPORTFOREIGNSCHEMA-compatibility">
index 95aa77b907fb78a89f5d292f4ebd23ec3fde1598..94dad0087019f22996cf5cd3c5f24e8f130ff3ad 100644 (file)
@@ -725,8 +725,7 @@ INSERT INTO distributors (did, dname) VALUES (9, 'Antwerp Design')
 -- just use a regular unique constraint on "did"
 INSERT INTO distributors (did, dname) VALUES (10, 'Conrad International')
     ON CONFLICT (did) WHERE is_active DO NOTHING;
-</programlisting>
-  </para>
+</programlisting></para>
  </refsect1>
 
  <refsect1>