summaryrefslogtreecommitdiff
path: root/src/include/c.h
diff options
context:
space:
mode:
authorMichael Paquier2019-05-14 00:37:35 +0000
committerMichael Paquier2019-05-14 00:37:35 +0000
commit7e19929ea29668f3d01280262e407b93042c959a (patch)
tree1785de8a1f836c4ff49603397e097ebe65dc9965 /src/include/c.h
parentae7291acbc5ae4c3751615177fc256f9f3399403 (diff)
Fix duplicated words in comments
Author: Stephen Amell Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'src/include/c.h')
-rw-r--r--src/include/c.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/c.h b/src/include/c.h
index 33c95181952..0f89c0224d6 100644
--- a/src/include/c.h
+++ b/src/include/c.h
@@ -1129,7 +1129,7 @@ typedef union PGAlignedXLogBlock
* Please note IT IS NOT SAFE to cast constness away if the result will ever
* be modified (it would be undefined behaviour). Doing so anyway can cause
* compiler misoptimizations or runtime crashes (modifying readonly memory).
- * It is only safe to use when the the result will not be modified, but API
+ * It is only safe to use when the result will not be modified, but API
* design or language restrictions prevent you from declaring that
* (e.g. because a function returns both const and non-const variables).
*