Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
doc: Fix some grammar and inconsistencies
authorMichael Paquier <michael@paquier.xyz>
Thu, 10 Sep 2020 06:50:46 +0000 (15:50 +0900)
committerMichael Paquier <michael@paquier.xyz>
Thu, 10 Sep 2020 06:50:46 +0000 (15:50 +0900)
Some comments are fixed while on it.

Author: Justin Pryzby
Discussion: https://postgr.es/m/20200818171702.GK17022@telsasoft.com
Backpatch-through: 9.6

doc/src/sgml/logicaldecoding.sgml
doc/src/sgml/ref/alter_table.sgml
doc/src/sgml/ref/create_subscription.sgml
doc/src/sgml/sources.sgml
src/backend/storage/lmgr/proc.c

index 8db968641ee447cbc1fc643e37ed47c6cf0f37e9..05d59ce1c8a69f7d16db03f631909e30ce54b06b 100644 (file)
@@ -223,7 +223,7 @@ $ pg_recvlogical -d postgres --slot=test --drop-slot
      A logical slot will emit each change just once in normal operation.
      The current position of each slot is persisted only at checkpoint, so in
      the case of a crash the slot may return to an earlier LSN, which will
-     then cause recent changes to be resent when the server restarts.
+     then cause recent changes to be sent again when the server restarts.
      Logical decoding clients are responsible for avoiding ill effects from
      handling the same message more than once.  Clients may wish to record
      the last LSN they saw when decoding and skip over any repeated data or
index f2391dff52f21ffb34b7f97e0b690ccfc2a1d4d2..1b633812adb5afa22754660fcff204235057e25a 100644 (file)
@@ -868,7 +868,7 @@ WITH ( MODULUS <replaceable class="parameter">numeric_literal</replaceable>, REM
       from the parent table will be created in the partition, if they don't
       already exist.
       If any of the <literal>CHECK</literal> constraints of the table being
-      attached is marked <literal>NO INHERIT</literal>, the command will fail;
+      attached are marked <literal>NO INHERIT</literal>, the command will fail;
       such constraints must be recreated without the
       <literal>NO INHERIT</literal> clause.
      </para>
index 1a90c244fbfbf8a8a7988362c120cded8d5314a3..c9b6623512668a5b6b235ae09e81230f5f43dc81 100644 (file)
@@ -159,7 +159,7 @@ CREATE SUBSCRIPTION <replaceable class="parameter">subscription_name</replaceabl
          <para>
           It is safe to use <literal>off</literal> for logical replication:
           If the subscriber loses transactions because of missing
-          synchronization, the data will be resent from the publisher.
+          synchronization, the data will be sent again from the publisher.
          </para>
 
          <para>
index ed448a3785fa1508603721b5d1dea494c0431264..bce3bcb83269b1e4f72dba1c6fe582abd62e35c1 100644 (file)
@@ -373,7 +373,7 @@ ereport(ERROR,
      specify suppression of the <literal>CONTEXT:</literal> portion of a message in
      the postmaster log.  This should only be used for verbose debugging
      messages where the repeated inclusion of context would bloat the log
-     volume too much.
+     too much.
     </para>
    </listitem>
   </itemizedlist>
index 498373fd0ee1b4b40f3abeeffd149bfa1ddaa1dc..b15e576e449f798cf2e4f4e4be05c9a7bc970189 100644 (file)
@@ -1370,7 +1370,7 @@ ProcSleep(LOCALLOCK *locallock, LockMethod lockMethodTable)
            else
                LWLockRelease(ProcArrayLock);
 
-           /* prevent signal from being resent more than once */
+           /* prevent signal from being sent again more than once */
            allow_autovacuum_cancel = false;
        }