summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2017-02-17 18:59:29 -0500
committerPeter Eisentraut <peter_e@gmx.net>2017-02-17 18:59:29 -0500
commit68f3dbc5525a7e78290f7dee8a74f66d5fa738d6 (patch)
tree7c2fc62d637a9aa2da7454db3ef61bd557486a73
parent363ac78aee37790a1f932ee3050bdd21085aabfe (diff)
doc: Fix typos
From: Thom Brown <thom@linux.com>
-rw-r--r--doc/src/sgml/ref/create_subscription.sgml2
-rw-r--r--doc/src/sgml/ref/create_table.sgml2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/create_subscription.sgml b/doc/src/sgml/ref/create_subscription.sgml
index 59e5ad00c83..250806f981b 100644
--- a/doc/src/sgml/ref/create_subscription.sgml
+++ b/doc/src/sgml/ref/create_subscription.sgml
@@ -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>
diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml
index e0f7cd9b93e..41c08bba743 100644
--- a/doc/src/sgml/ref/create_table.sgml
+++ b/doc/src/sgml/ref/create_table.sgml
@@ -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>