]> granicus.if.org Git - postgresql/commitdiff
doc: Fix typos
authorPeter Eisentraut <peter_e@gmx.net>
Fri, 17 Feb 2017 23:59:29 +0000 (18:59 -0500)
committerPeter Eisentraut <peter_e@gmx.net>
Fri, 17 Feb 2017 23:59:29 +0000 (18:59 -0500)
From: Thom Brown <thom@linux.com>

doc/src/sgml/ref/create_subscription.sgml
doc/src/sgml/ref/create_table.sgml

index 59e5ad00c835cb6a39bb2c7dc9c15b889e4f7366..250806f981b5d38164424bfbc42718862f5d656d 100644 (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>
index e0f7cd9b93ecd15773cd1e5dc4440ea9c71d0806..41c08bba7437e68cc608222c810c8fa69a6c091c 100644 (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>