Skip to content

Commit cd307c3

Browse files
committed
Fix typo in comments
Backpatch-through: v16
1 parent a153781 commit cd307c3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/backend/storage/buffer/bufmgr.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1321,8 +1321,8 @@ BufferAlloc(SMgrRelation smgr, char relpersistence, ForkNumber forkNum,
13211321
UnpinBuffer(victim_buf_hdr);
13221322

13231323
/*
1324-
* The victim buffer we acquired peviously is clean and unused, let it
1325-
* be found again quickly
1324+
* The victim buffer we acquired previously is clean and unused, let
1325+
* it be found again quickly
13261326
*/
13271327
StrategyFreeBuffer(victim_buf_hdr);
13281328

@@ -1908,7 +1908,7 @@ ExtendBufferedRelShared(BufferManagerRelation bmr,
19081908
BufferDesc *buf_hdr = GetBufferDescriptor(buffers[i] - 1);
19091909

19101910
/*
1911-
* The victim buffer we acquired peviously is clean and unused,
1911+
* The victim buffer we acquired previously is clean and unused,
19121912
* let it be found again quickly
19131913
*/
19141914
StrategyFreeBuffer(buf_hdr);
@@ -1984,7 +1984,7 @@ ExtendBufferedRelShared(BufferManagerRelation bmr,
19841984
LWLockRelease(partition_lock);
19851985

19861986
/*
1987-
* The victim buffer we acquired peviously is clean and unused,
1987+
* The victim buffer we acquired previously is clean and unused,
19881988
* let it be found again quickly
19891989
*/
19901990
StrategyFreeBuffer(victim_buf_hdr);

0 commit comments

Comments
 (0)