diff options
author | David Rowley <drowley@postgresql.org> | 2023-01-04 09:23:19 +1300 |
---|---|---|
committer | David Rowley <drowley@postgresql.org> | 2023-01-04 09:23:19 +1300 |
commit | b23837dde48028f9e31983c765c32e3f42cb7ef2 (patch) | |
tree | a855f631f5c9618b32a2728a7a7158fe359fa3cf | |
parent | 1c77873727dfd2e48ab2ece84d1fb1676e95f9a5 (diff) | |
download | postgresql-b23837dde48028f9e31983c765c32e3f42cb7ef2.tar.gz postgresql-b23837dde48028f9e31983c765c32e3f42cb7ef2.zip |
Fix typo in memutils_memorychunk.h
Author: Richard Guo
Discussion: https://postgr.es/m/CAMbWs483CYjHoLH32_hd3Yq1NJfravNdL2zy7+e7pwvFPJF1RQ@mail.gmail.com
-rw-r--r-- | src/include/utils/memutils_memorychunk.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/utils/memutils_memorychunk.h b/src/include/utils/memutils_memorychunk.h index 1d064d398cb..2439ba4e961 100644 --- a/src/include/utils/memutils_memorychunk.h +++ b/src/include/utils/memutils_memorychunk.h @@ -5,9 +5,9 @@ * MemoryContexts may use as a header for chunks of memory they allocate. * * MemoryChunk provides a lightweight header that a MemoryContext can use to - * store a reference back to the block the which the given chunk is allocated - * on and also an additional 30-bits to store another value such as the size - * of the allocated chunk. + * store a reference back to the block which the given chunk is allocated on + * and also an additional 30-bits to store another value such as the size of + * the allocated chunk. * * Although MemoryChunks are used by each of our MemoryContexts, future * implementations may choose to implement their own method for storing chunk |