aboutsummaryrefslogtreecommitdiff
path: root/src/backend/replication/logical/reorderbuffer.c
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2021-12-09 15:20:36 +0900
committerMichael Paquier <michael@paquier.xyz>2021-12-09 15:20:36 +0900
commit5d08137076fd39694188ec4625013756aab889e1 (patch)
treee305b3fa9c81201f741f8bacbbd788eeb7319b79 /src/backend/replication/logical/reorderbuffer.c
parent5e97905a2c764d4ca36f5c6cccd0ebbf157b9df4 (diff)
downloadpostgresql-5d08137076fd39694188ec4625013756aab889e1.tar.gz
postgresql-5d08137076fd39694188ec4625013756aab889e1.zip
Fix some typos with {a,an}
One of the changes impacts the documentation, so backpatch. Author: Peter Smith Discussion: https://postgr.es/m/CAHut+Pu6+c+r3mY24VT7u+H+E_s6vMr5OdRiZ8NT3EOa-E5Lmw@mail.gmail.com Backpatch-through: 14
Diffstat (limited to 'src/backend/replication/logical/reorderbuffer.c')
-rw-r--r--src/backend/replication/logical/reorderbuffer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/replication/logical/reorderbuffer.c b/src/backend/replication/logical/reorderbuffer.c
index 46e66608cf0..7aa5647a2c6 100644
--- a/src/backend/replication/logical/reorderbuffer.c
+++ b/src/backend/replication/logical/reorderbuffer.c
@@ -452,7 +452,7 @@ ReorderBufferReturnTXN(ReorderBuffer *rb, ReorderBufferTXN *txn)
}
/*
- * Get an fresh ReorderBufferChange.
+ * Get a fresh ReorderBufferChange.
*/
ReorderBufferChange *
ReorderBufferGetChange(ReorderBuffer *rb)
@@ -558,7 +558,7 @@ ReorderBufferGetTupleBuf(ReorderBuffer *rb, Size tuple_len)
}
/*
- * Free an ReorderBufferTupleBuf.
+ * Free a ReorderBufferTupleBuf.
*/
void
ReorderBufferReturnTupleBuf(ReorderBuffer *rb, ReorderBufferTupleBuf *tuple)
@@ -639,7 +639,7 @@ ReorderBufferTXNByXid(ReorderBuffer *rb, TransactionId xid, bool create,
}
/*
- * If the cache wasn't hit or it yielded an "does-not-exist" and we want
+ * If the cache wasn't hit or it yielded a "does-not-exist" and we want
* to create an entry.
*/