]> granicus.if.org Git - postgresql/commitdiff
Make spelling of "acknowledgment" consistent
authorPeter Eisentraut <peter_e@gmx.net>
Mon, 15 Oct 2018 08:06:45 +0000 (10:06 +0200)
committerPeter Eisentraut <peter_e@gmx.net>
Mon, 15 Oct 2018 08:06:45 +0000 (10:06 +0200)
I used the preferred U.S. spelling, as we do in other cases.

doc/src/sgml/high-availability.sgml
doc/src/sgml/release-10.sgml
src/backend/replication/syncrep.c
src/common/pg_lzcompress.c

index 6f57362df7fee824f680c5fbb1aa22883e5de6f6..ebcb3daaed6436efb5155fa0a2cc0e75f713a0b1 100644 (file)
@@ -1324,14 +1324,14 @@ synchronous_standby_names = 'ANY 2 (s1, s2, s3)'
    </para>
 
    <para>
-    If primary restarts while commits are waiting for acknowledgement, those
+    If primary restarts while commits are waiting for acknowledgment, those
     waiting transactions will be marked fully committed once the primary
     database recovers.
     There is no way to be certain that all standbys have received all
     outstanding WAL data at time of the crash of the primary. Some
     transactions may not show as committed on the standby, even though
     they show as committed on the primary. The guarantee we offer is that
-    the application will not receive explicit acknowledgement of the
+    the application will not receive explicit acknowledgment of the
     successful commit of a transaction until the WAL data is known to be
     safely received by all the synchronous standbys.
    </para>
index b5bf035abd3837a5670cdeab59cd20fbc7313d9f..22a06737854bb9d485dca2ac96c438e5378874fd 100644 (file)
@@ -5890,7 +5890,7 @@ This was disabled in the PG 9.6 branch so there is no commit here.
 2016-12-19 [3901fd70c] Support quorum-based synchronous replication.
 -->
       <para>
-       Allow waiting for commit acknowledgement from standby
+       Allow waiting for commit acknowledgment from standby
        servers irrespective of the order they appear in <xref
        linkend="guc-synchronous-standby-names"/> (Masahiko Sawada)
       </para>
@@ -6462,7 +6462,7 @@ This was disabled in the PG 9.6 branch so there is no commit here.
       <para>
        This is useful for checking after an abrupt disconnection whether
        your previous transaction committed and you just didn't receive
-       the acknowledgement.
+       the acknowledgment.
       </para>
      </listitem>
 
index 75d26817192cf15e918957279390448ca539fe51..af5ad5fe66f1b5127b079d1fd6da052c430b807f 100644 (file)
@@ -268,7 +268,7 @@ SyncRepWaitForLSN(XLogRecPtr lsn, bool commit)
 
                /*
                 * If the postmaster dies, we'll probably never get an
-                * acknowledgement, because all the wal sender processes will exit. So
+                * acknowledgment, because all the wal sender processes will exit. So
                 * just bail out.
                 */
                if (!PostmasterIsAlive())
index a2f87cff8b5fc316f9a196965f2e97dbbe54cdee..2d25da3a2323be855aabd3a60cab3da63e521730 100644 (file)
  *                     scanned for the history add's, otherwise a literal character
  *                     is omitted and only his history entry added.
  *
- *             Acknowledgements:
+ *             Acknowledgments:
  *
  *                     Many thanks to Adisak Pochanayon, who's article about SLZ
  *                     inspired me to write the PostgreSQL compression this way.