diff --git a/doc/src/sgml/logical-replication.sgml b/doc/src/sgml/logical-replication.sgml
index eeddea3e523..57e2d3e7573 100644
--- a/doc/src/sgml/logical-replication.sgml
+++ b/doc/src/sgml/logical-replication.sgml
@@ -67,7 +67,7 @@
Replicating between PostgreSQL instances on different platforms (for
- example Linux to Windows)
+ example Linux to Windows).
@@ -88,7 +88,7 @@
The subscriber database behaves in the same way as any other PostgreSQL
instance and can be used as a publisher for other databases by defining its
- own publications. When the subscriber is treated as read-only by
+ own publications. When the subscriber is treated as read-only by an
application, there will be no conflicts from a single subscription. On the
other hand, if there are other writes done either by an application or by other
subscribers to the same set of tables, conflicts can arise.
@@ -167,8 +167,8 @@
A subscription is the downstream side of logical
replication. The node where a subscription is defined is referred to as
the subscriber. A subscription defines the connection
- to another database and set of publications (one or more) to which it wants
- to subscribe.
+ to another database and the set of publications (one or more) to which it
+ wants to subscribe.
@@ -485,7 +485,7 @@
Initial Snapshot
- The initial data in existing subscribed tables are snapshotted and
+ The initial data in existing subscribed tables is snapshotted and
copied in a parallel instance of a special kind of apply process.
This process will create its own replication slot and copy the existing
data. As soon as the copy is finished the table contents will become
diff --git a/doc/src/sgml/ref/create_publication.sgml b/doc/src/sgml/ref/create_publication.sgml
index 45ca9ce7776..b653713eef9 100644
--- a/doc/src/sgml/ref/create_publication.sgml
+++ b/doc/src/sgml/ref/create_publication.sgml
@@ -112,7 +112,7 @@ CREATE PUBLICATION name
This parameter determines which DML operations will be published by
- the new publication to the subscribers. The value is
+ the new publication to the subscribers. The value is a
comma-separated list of operations. The allowed operations are
insert, update,
delete, and truncate.