Skip to content

Commit a276091

Browse files
committed
doc: Markup and formatting improvements
1 parent dc02c7b commit a276091

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

doc/src/sgml/ref/alter_subscription.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ ALTER SUBSCRIPTION <replaceable class="PARAMETER">name</replaceable> WITH ( <rep
2525

2626
<phrase>where <replaceable class="PARAMETER">option</replaceable> can be:</phrase>
2727

28-
SLOT NAME = slot_name
28+
SLOT NAME = <replaceable class="PARAMETER">slot_name</replaceable>
2929

3030
ALTER SUBSCRIPTION <replaceable class="PARAMETER">name</replaceable> OWNER TO { <replaceable>new_owner</replaceable> | CURRENT_USER | SESSION_USER }
31-
ALTER SUBSCRIPTION <replaceable class="PARAMETER">name</replaceable> CONNECTION 'conninfo'
32-
ALTER SUBSCRIPTION <replaceable class="PARAMETER">name</replaceable> SET PUBLICATION publication_name [, ...]
31+
ALTER SUBSCRIPTION <replaceable class="PARAMETER">name</replaceable> CONNECTION '<replaceable>conninfo</replaceable>'
32+
ALTER SUBSCRIPTION <replaceable class="PARAMETER">name</replaceable> SET PUBLICATION <replaceable>publication_name</replaceable> [, ...]
3333
ALTER SUBSCRIPTION <replaceable class="PARAMETER">name</replaceable> ENABLE
3434
ALTER SUBSCRIPTION <replaceable class="PARAMETER">name</replaceable> DISABLE
3535
</synopsis>

doc/src/sgml/ref/create_subscription.sgml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,16 @@ PostgreSQL documentation
2121

2222
<refsynopsisdiv>
2323
<synopsis>
24-
CREATE SUBSCRIPTION <replaceable class="PARAMETER">subscription_name</replaceable> CONNECTION 'conninfo' PUBLICATION { publication_name [, ...] } [ WITH ( <replaceable class="PARAMETER">option</replaceable> [, ... ] ) ]
24+
CREATE SUBSCRIPTION <replaceable class="PARAMETER">subscription_name</replaceable>
25+
CONNECTION '<replaceable class="PARAMETER">conninfo</replaceable>'
26+
PUBLICATION { <replaceable class="PARAMETER">publication_name</replaceable> [, ...] }
27+
[ WITH ( <replaceable class="PARAMETER">option</replaceable> [, ... ] ) ]
2528

2629
<phrase>where <replaceable class="PARAMETER">option</replaceable> can be:</phrase>
2730

2831
| ENABLED | DISABLED
2932
| CREATE SLOT | NOCREATE SLOT
30-
| SLOT NAME = slot_name
33+
| SLOT NAME = <replaceable class="PARAMETER">slot_name</replaceable>
3134
</synopsis>
3235
</refsynopsisdiv>
3336

doc/src/sgml/ref/drop_subscription.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ DROP SUBSCRIPTION [ IF EXISTS ] <replaceable class="parameter">name</replaceable
5757
</varlistentry>
5858

5959
<varlistentry>
60-
<term><replaceable class="parameter">DROP SLOT</replaceable></term>
61-
<term><replaceable class="parameter">NODROP SLOT</replaceable></term>
60+
<term><literal>DROP SLOT</literal></term>
61+
<term><literal>NODROP SLOT</literal></term>
6262
<listitem>
6363
<para>
6464
Specifies whether to drop the replication slot on the publisher. The

0 commit comments

Comments
 (0)