Skip to content

Commit 7e19929

Browse files
committed
Fix duplicated words in comments
Author: Stephen Amell Discussion: https://postgr.es/m/539fa271-21b3-777e-a468-d96cffe9c768@gmail.com
1 parent ae7291a commit 7e19929

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

src/backend/executor/execExpr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2361,7 +2361,7 @@ get_last_attnums_walker(Node *node, LastAttnumInfo *info)
23612361
* Compute additional information for EEOP_*_FETCHSOME ops.
23622362
*
23632363
* The goal is to determine whether a slot is 'fixed', that is, every
2364-
* evaluation of the the expression will have the same type of slot, with an
2364+
* evaluation of the expression will have the same type of slot, with an
23652365
* equivalent descriptor.
23662366
*/
23672367
static void

src/backend/replication/logical/reorderbuffer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1533,7 +1533,7 @@ ReorderBufferCommit(ReorderBuffer *rb, TransactionId xid,
15331533
/*
15341534
* Mapped catalog tuple without data, emitted while
15351535
* catalog table was in the process of being rewritten. We
1536-
* can fail to look up the relfilenode, because the the
1536+
* can fail to look up the relfilenode, because the
15371537
* relmapper has no "historic" view, in contrast to normal
15381538
* the normal catalog during decoding. Thus repeated
15391539
* rewrites can cause a lookup failure. That's OK because

src/include/c.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1129,7 +1129,7 @@ typedef union PGAlignedXLogBlock
11291129
* Please note IT IS NOT SAFE to cast constness away if the result will ever
11301130
* be modified (it would be undefined behaviour). Doing so anyway can cause
11311131
* compiler misoptimizations or runtime crashes (modifying readonly memory).
1132-
* It is only safe to use when the the result will not be modified, but API
1132+
* It is only safe to use when the result will not be modified, but API
11331133
* design or language restrictions prevent you from declaring that
11341134
* (e.g. because a function returns both const and non-const variables).
11351135
*

src/include/jit/llvmjit_emit.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ l_mcxt_switch(LLVMModuleRef mod, LLVMBuilderRef b, LLVMValueRef nc)
218218
}
219219

220220
/*
221-
* Return pointer to the the argno'th argument nullness.
221+
* Return pointer to the argno'th argument nullness.
222222
*/
223223
static inline LLVMValueRef
224224
l_funcnullp(LLVMBuilderRef b, LLVMValueRef v_fcinfo, size_t argno)
@@ -236,7 +236,7 @@ l_funcnullp(LLVMBuilderRef b, LLVMValueRef v_fcinfo, size_t argno)
236236
}
237237

238238
/*
239-
* Return pointer to the the argno'th argument datum.
239+
* Return pointer to the argno'th argument datum.
240240
*/
241241
static inline LLVMValueRef
242242
l_funcvaluep(LLVMBuilderRef b, LLVMValueRef v_fcinfo, size_t argno)

src/include/nodes/execnodes.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@ typedef struct EState
593593
* and with which options. es_jit is created on-demand when JITing is
594594
* performed.
595595
*
596-
* es_jit_combined_instr is the the combined, on demand allocated,
596+
* es_jit_combined_instr is the combined, on demand allocated,
597597
* instrumentation from all workers. The leader's instrumentation is kept
598598
* separate, and is combined on demand by ExplainPrintJITSummary().
599599
*/

src/include/replication/logical.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ typedef struct LogicalDecodingContext
4747

4848
/*
4949
* Marks the logical decoding context as fast forward decoding one. Such a
50-
* context does not have plugin loaded so most of the the following
50+
* context does not have plugin loaded so most of the following
5151
* properties are unused.
5252
*/
5353
bool fast_forward;

0 commit comments

Comments
 (0)