doc: Fix typos

From: Thom Brown <thom@linux.com>
This commit is contained in:
Peter Eisentraut 2017-02-17 18:59:29 -05:00
parent 363ac78aee
commit 68f3dbc552
2 changed files with 2 additions and 2 deletions

View File

@ -142,7 +142,7 @@ CREATE SUBSCRIPTION <replaceable class="PARAMETER">subscription_name</replaceabl
<para>
Create a subscription to a remote server that replicates tables in
the publications <literal>mypubclication</literal> and
the publications <literal>mypublication</literal> and
<literal>insert_only</literal> and starts replicating immediately on
commit:
<programlisting>

View File

@ -1539,7 +1539,7 @@ CREATE TABLE measurement_year_month (
CREATE TABLE cities (
city_id bigserial not null,
name text not null,
population bigint,
population bigint
) PARTITION BY LIST (left(lower(name), 1));
</programlisting></para>