From fc9fae09707b25d2fe85b2e02cae0be2d0147b68 Mon Sep 17 00:00:00 2001 From: Thiago Caserta Date: Tue, 24 Mar 2026 16:32:38 -0300 Subject: [PATCH v1] Fix typos: "its a" -> "it's a" in code comments Fix two instances where the possessive "its" was incorrectly used instead of the contraction "it's" (it is) in code comments. Co-Authored-By: Claude Opus 4.6 --- contrib/btree_gist/btree_utils_var.h | 2 +- src/backend/executor/execTuples.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/btree_gist/btree_utils_var.h b/contrib/btree_gist/btree_utils_var.h index 6cb3aadf3c3..f28a5d98ae3 100644 --- a/contrib/btree_gist/btree_utils_var.h +++ b/contrib/btree_gist/btree_utils_var.h @@ -42,7 +42,7 @@ typedef struct } gbtree_vinfo; /* - * Free ptr1 in case its a copy of ptr2. + * Free ptr1 in case it's a copy of ptr2. * * This is adapted from varlena's PG_FREE_IF_COPY, though doesn't require * fcinfo access. diff --git a/src/backend/executor/execTuples.c b/src/backend/executor/execTuples.c index 9d900147a55..1a477f40bd3 100644 --- a/src/backend/executor/execTuples.c +++ b/src/backend/executor/execTuples.c @@ -512,7 +512,7 @@ tts_minimal_init(TupleTableSlot *slot) /* * Initialize the heap tuple pointer to access attributes of the minimal - * tuple contained in the slot as if its a heap tuple. + * tuple contained in the slot as if it's a heap tuple. */ mslot->tuple = &mslot->minhdr; } -- 2.53.0