1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-20 05:13:53 +03:00

Fix typo in comments

Backpatch-through: v16
This commit is contained in:
Heikki Linnakangas 2024-02-03 00:18:21 +02:00
parent a15378100f
commit cd307c38f0

View File

@ -1321,8 +1321,8 @@ BufferAlloc(SMgrRelation smgr, char relpersistence, ForkNumber forkNum,
UnpinBuffer(victim_buf_hdr); UnpinBuffer(victim_buf_hdr);
/* /*
* The victim buffer we acquired peviously is clean and unused, let it * The victim buffer we acquired previously is clean and unused, let
* be found again quickly * it be found again quickly
*/ */
StrategyFreeBuffer(victim_buf_hdr); StrategyFreeBuffer(victim_buf_hdr);
@ -1908,7 +1908,7 @@ ExtendBufferedRelShared(BufferManagerRelation bmr,
BufferDesc *buf_hdr = GetBufferDescriptor(buffers[i] - 1); BufferDesc *buf_hdr = GetBufferDescriptor(buffers[i] - 1);
/* /*
* The victim buffer we acquired peviously is clean and unused, * The victim buffer we acquired previously is clean and unused,
* let it be found again quickly * let it be found again quickly
*/ */
StrategyFreeBuffer(buf_hdr); StrategyFreeBuffer(buf_hdr);
@ -1984,7 +1984,7 @@ ExtendBufferedRelShared(BufferManagerRelation bmr,
LWLockRelease(partition_lock); LWLockRelease(partition_lock);
/* /*
* The victim buffer we acquired peviously is clean and unused, * The victim buffer we acquired previously is clean and unused,
* let it be found again quickly * let it be found again quickly
*/ */
StrategyFreeBuffer(victim_buf_hdr); StrategyFreeBuffer(victim_buf_hdr);