From 68f3dbc5525a7e78290f7dee8a74f66d5fa738d6 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Fri, 17 Feb 2017 18:59:29 -0500 Subject: [PATCH] doc: Fix typos From: Thom Brown --- doc/src/sgml/ref/create_subscription.sgml | 2 +- doc/src/sgml/ref/create_table.sgml | 2 +- 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 59e5ad00c8..250806f981 100644 --- a/doc/src/sgml/ref/create_subscription.sgml +++ b/doc/src/sgml/ref/create_subscription.sgml @@ -142,7 +142,7 @@ CREATE SUBSCRIPTION subscription_name Create a subscription to a remote server that replicates tables in - the publications mypubclication and + the publications mypublication and insert_only and starts replicating immediately on commit: diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml index e0f7cd9b93..41c08bba74 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));