1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-30 06:01:21 +03:00

Spelling adjustments

This commit is contained in:
Peter Eisentraut
2020-06-07 15:06:51 +02:00
parent a02b8bdd98
commit 0fd2a79a63
26 changed files with 39 additions and 39 deletions

View File

@@ -122,7 +122,7 @@ typedef struct ReplicationState
int acquired_by;
/*
* Condition variable that's signalled when acquired_by changes.
* Condition variable that's signaled when acquired_by changes.
*/
ConditionVariable origin_cv;

View File

@@ -14,7 +14,7 @@
* This module gets handed individual pieces of transactions in the order
* they are written to the WAL and is responsible to reassemble them into
* toplevel transaction sized pieces. When a transaction is completely
* reassembled - signalled by reading the transaction commit record - it
* reassembled - signaled by reading the transaction commit record - it
* will then call the output plugin (cf. ReorderBufferCommit()) with the
* individual changes. The output plugins rely on snapshots built by
* snapbuild.c which hands them to us.