diff options
author | Daniel Gustafsson | 2024-04-18 19:28:07 +0000 |
---|---|---|
committer | Daniel Gustafsson | 2024-04-18 19:28:07 +0000 |
commit | 950d4a2cb1d5f427dbccf70dbad510479cc4d8e6 (patch) | |
tree | 9991d70c6ff074e92b30a099b8a42ae61aa59818 /src/backend/utils/mmgr | |
parent | fbed6ebe41beb72d9b7978a414ed4e8515ed1b19 (diff) |
Fix typos and duplicate words
This fixes various typos, duplicated words, and tiny bits of whitespace
mainly in code comments but also in docs.
Author: Daniel Gustafsson <[email protected]>
Author: Heikki Linnakangas <[email protected]>
Author: Alexander Lakhin <[email protected]>
Author: David Rowley <[email protected]>
Author: Nazir Bilal Yavuz <[email protected]>
Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'src/backend/utils/mmgr')
-rw-r--r-- | src/backend/utils/mmgr/aset.c | 4 | ||||
-rw-r--r-- | src/backend/utils/mmgr/bump.c | 4 | ||||
-rw-r--r-- | src/backend/utils/mmgr/generation.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/backend/utils/mmgr/aset.c b/src/backend/utils/mmgr/aset.c index 751cc3408c5..dede30dd86a 100644 --- a/src/backend/utils/mmgr/aset.c +++ b/src/backend/utils/mmgr/aset.c @@ -979,8 +979,8 @@ AllocSetAlloc(MemoryContext context, Size size, int flags) Assert(set->blocks != NULL); /* - * If requested size exceeds maximum for chunks we hand the the request - * off to AllocSetAllocLarge(). + * If requested size exceeds maximum for chunks we hand the request off to + * AllocSetAllocLarge(). */ if (size > set->allocChunkLimit) return AllocSetAllocLarge(context, size, flags); diff --git a/src/backend/utils/mmgr/bump.c b/src/backend/utils/mmgr/bump.c index a98bafbcc03..c60c9c131e3 100644 --- a/src/backend/utils/mmgr/bump.c +++ b/src/backend/utils/mmgr/bump.c @@ -505,8 +505,8 @@ BumpAlloc(MemoryContext context, Size size, int flags) #endif /* - * If requested size exceeds maximum for chunks we hand the the request - * off to BumpAllocLarge(). + * If requested size exceeds maximum for chunks we hand the request off to + * BumpAllocLarge(). */ if (chunk_size > set->allocChunkLimit) return BumpAllocLarge(context, size, flags); diff --git a/src/backend/utils/mmgr/generation.c b/src/backend/utils/mmgr/generation.c index 5d81af1f947..b858b8d0f7b 100644 --- a/src/backend/utils/mmgr/generation.c +++ b/src/backend/utils/mmgr/generation.c @@ -541,8 +541,8 @@ GenerationAlloc(MemoryContext context, Size size, int flags) #endif /* - * If requested size exceeds maximum for chunks we hand the the request - * off to GenerationAllocLarge(). + * If requested size exceeds maximum for chunks we hand the request off to + * GenerationAllocLarge(). */ if (chunk_size > set->allocChunkLimit) return GenerationAllocLarge(context, size, flags); |