diff options
| author | John Naylor | 2025-01-29 07:28:20 +0000 |
|---|---|---|
| committer | John Naylor | 2025-01-29 07:39:14 +0000 |
| commit | 128897b101e0a7bc8621abac746ea99d444d83ae (patch) | |
| tree | 130901bf3d4b609f51cc63beeb2134e284aa3e3b /src/backend/replication | |
| parent | 235328ee4ae49cd5abf3c1c9b81f3b809507e5f2 (diff) | |
Fix grammatical typos around possessive "its"
Some places spelled it "it's", which is short for "it is".
In passing, fix a couple other nearby grammatical errors.
Author: Jacob Brazeal <[email protected]>
Discussion: https://postgr.es/m/CA+COZaAO8g1KJCV0T48=CkJMjAnnfTGLWOATz+2aCh40c2Nm+g@mail.gmail.com
Diffstat (limited to 'src/backend/replication')
| -rw-r--r-- | src/backend/replication/logical/reorderbuffer.c | 2 | ||||
| -rw-r--r-- | src/backend/replication/logical/worker.c | 2 | ||||
| -rw-r--r-- | src/backend/replication/pgoutput/pgoutput.c | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/replication/logical/reorderbuffer.c b/src/backend/replication/logical/reorderbuffer.c index 79b60df7cf0..5389eec20d2 100644 --- a/src/backend/replication/logical/reorderbuffer.c +++ b/src/backend/replication/logical/reorderbuffer.c @@ -1663,7 +1663,7 @@ ReorderBufferTruncateTXN(ReorderBuffer *rb, ReorderBufferTXN *txn, bool txn_prep /* Check we're not mixing changes from different transactions. */ Assert(change->txn == txn); - /* remove the change from it's containing list */ + /* remove the change from its containing list */ dlist_delete(&change->node); /* diff --git a/src/backend/replication/logical/worker.c b/src/backend/replication/logical/worker.c index 334bf3e7aff..6966037d2ef 100644 --- a/src/backend/replication/logical/worker.c +++ b/src/backend/replication/logical/worker.c @@ -4092,7 +4092,7 @@ subscription_change_cb(Datum arg, int cacheid, uint32 hashvalue) * subxact_info_write * Store information about subxacts for a toplevel transaction. * - * For each subxact we store offset of it's first change in the main file. + * For each subxact we store offset of its first change in the main file. * The file is always over-written as a whole. * * XXX We should only store subxacts that were not aborted yet. diff --git a/src/backend/replication/pgoutput/pgoutput.c b/src/backend/replication/pgoutput/pgoutput.c index a363c88ffc0..0227fcbca3d 100644 --- a/src/backend/replication/pgoutput/pgoutput.c +++ b/src/backend/replication/pgoutput/pgoutput.c @@ -1849,7 +1849,7 @@ pgoutput_stream_stop(struct LogicalDecodingContext *ctx, /* * Notify downstream to discard the streamed transaction (along with all - * it's subtransactions, if it's a toplevel transaction). + * its subtransactions, if it's a toplevel transaction). */ static void pgoutput_stream_abort(struct LogicalDecodingContext *ctx, @@ -1882,7 +1882,7 @@ pgoutput_stream_abort(struct LogicalDecodingContext *ctx, /* * Notify downstream to apply the streamed transaction (along with all - * it's subtransactions). + * its subtransactions). */ static void pgoutput_stream_commit(struct LogicalDecodingContext *ctx, |
