diff options
author | John Naylor <john.naylor@postgresql.org> | 2025-01-29 14:28:20 +0700 |
---|---|---|
committer | John Naylor <john.naylor@postgresql.org> | 2025-01-29 14:39:14 +0700 |
commit | 128897b101e0a7bc8621abac746ea99d444d83ae (patch) | |
tree | 130901bf3d4b609f51cc63beeb2134e284aa3e3b /src/backend | |
parent | 235328ee4ae49cd5abf3c1c9b81f3b809507e5f2 (diff) | |
download | postgresql-128897b101e0a7bc8621abac746ea99d444d83ae.tar.gz postgresql-128897b101e0a7bc8621abac746ea99d444d83ae.zip |
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 <jacob.brazeal@gmail.com>
Discussion: https://postgr.es/m/CA+COZaAO8g1KJCV0T48=CkJMjAnnfTGLWOATz+2aCh40c2Nm+g@mail.gmail.com
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/access/spgist/spgscan.c | 2 | ||||
-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 | ||||
-rw-r--r-- | src/backend/storage/lmgr/lock.c | 2 | ||||
-rw-r--r-- | src/backend/storage/lmgr/lwlock.c | 2 | ||||
-rw-r--r-- | src/backend/utils/adt/formatting.c | 2 | ||||
-rw-r--r-- | src/backend/utils/adt/jsonpath_exec.c | 2 | ||||
-rw-r--r-- | src/backend/utils/adt/tsrank.c | 2 | ||||
-rw-r--r-- | src/backend/utils/sort/tuplesort.c | 2 |
10 files changed, 11 insertions, 11 deletions
diff --git a/src/backend/access/spgist/spgscan.c b/src/backend/access/spgist/spgscan.c index 986362a777f..53f910e9d89 100644 --- a/src/backend/access/spgist/spgscan.c +++ b/src/backend/access/spgist/spgscan.c @@ -865,7 +865,7 @@ redirect: if (SpGistPageIsLeaf(page)) { - /* Page is a leaf - that is, all it's tuples are heap items */ + /* Page is a leaf - that is, all its tuples are heap items */ OffsetNumber max = PageGetMaxOffsetNumber(page); if (SpGistBlockIsRoot(blkno)) 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, diff --git a/src/backend/storage/lmgr/lock.c b/src/backend/storage/lmgr/lock.c index 3e2f98b371c..11b4d1085bb 100644 --- a/src/backend/storage/lmgr/lock.c +++ b/src/backend/storage/lmgr/lock.c @@ -1323,7 +1323,7 @@ SetupLockInTable(LockMethod lockMethodTable, PGPROC *proc, * on our own behalf, in which case our group leader isn't changing * because the group leader for a process can only ever be changed by * the process itself; or else we are transferring a fast-path lock to - * the main lock table, in which case that process can't change it's + * the main lock table, in which case that process can't change its * lock group leader without first releasing all of its locks (and in * particular the one we are currently transferring). */ diff --git a/src/backend/storage/lmgr/lwlock.c b/src/backend/storage/lmgr/lwlock.c index 2f558ffea14..f1e74f184f1 100644 --- a/src/backend/storage/lmgr/lwlock.c +++ b/src/backend/storage/lmgr/lwlock.c @@ -60,7 +60,7 @@ * The attentive reader might have noticed that naively doing the above has a * glaring race condition: We try to lock using the atomic operations and * notice that we have to wait. Unfortunately by the time we have finished - * queuing, the former locker very well might have already finished it's + * queuing, the former locker very well might have already finished its * work. That's problematic because we're now stuck waiting inside the OS. * To mitigate those races we use a two phased attempt at locking: diff --git a/src/backend/utils/adt/formatting.c b/src/backend/utils/adt/formatting.c index 2720d3902ab..5bd1e01f7e4 100644 --- a/src/backend/utils/adt/formatting.c +++ b/src/backend/utils/adt/formatting.c @@ -5561,7 +5561,7 @@ NUM_numpart_from_char(NUMProc *Np, int id, int input_len) } /* - * try read non-locale sign, it's happen only if format is not exact + * try read non-locale sign, which happens only if format is not exact * and we cannot determine sign position of MI/PL/SG, an example: * * FM9.999999MI -> 5.01- diff --git a/src/backend/utils/adt/jsonpath_exec.c b/src/backend/utils/adt/jsonpath_exec.c index 960fdec3dba..dbab24737ef 100644 --- a/src/backend/utils/adt/jsonpath_exec.c +++ b/src/backend/utils/adt/jsonpath_exec.c @@ -77,7 +77,7 @@ #include "utils/timestamp.h" /* - * Represents "base object" and it's "id" for .keyvalue() evaluation. + * Represents "base object" and its "id" for .keyvalue() evaluation. */ typedef struct JsonBaseObjectInfo { diff --git a/src/backend/utils/adt/tsrank.c b/src/backend/utils/adt/tsrank.c index 38f8505fd17..e863aa58653 100644 --- a/src/backend/utils/adt/tsrank.c +++ b/src/backend/utils/adt/tsrank.c @@ -812,7 +812,7 @@ get_docrep(TSVector txt, QueryRepresentation *qr, int *doclen) qsort(doc, cur, sizeof(DocRepresentation), compareDocR); /* - * Join QueryItem per WordEntry and it's position + * Join QueryItem per WordEntry and its position */ storage.pos = doc->pos; storage.data.query.items = palloc(sizeof(QueryItem *) * qr->query->size); diff --git a/src/backend/utils/sort/tuplesort.c b/src/backend/utils/sort/tuplesort.c index bda1bffa3cc..2ef32d53a43 100644 --- a/src/backend/utils/sort/tuplesort.c +++ b/src/backend/utils/sort/tuplesort.c @@ -202,7 +202,7 @@ struct Tuplesortstate int64 maxSpace; /* maximum amount of space occupied among sort * of groups, either in-memory or on-disk */ bool isMaxSpaceDisk; /* true when maxSpace is value for on-disk - * space, false when it's value for in-memory + * space, false when its value for in-memory * space */ TupSortStatus maxSpaceStatus; /* sort status when maxSpace was reached */ LogicalTapeSet *tapeset; /* logtape.c object for tapes in a temp file */ |