summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Gustafsson <dgustafsson@postgresql.org>2022-11-17 13:17:19 +0100
committerDaniel Gustafsson <dgustafsson@postgresql.org>2022-11-17 13:17:19 +0100
commit3d0c95bc8920f51f7d7685c622c9a75f59cf322f (patch)
tree9ac40615680173ff70071bb45f3fe3195904e02d /src
parent01755490cfa196ddc415308ab5aed8cc45fbaaad (diff)
downloadpostgresql-3d0c95bc8920f51f7d7685c622c9a75f59cf322f.tar.gz
Fix wording in comment
Author: vignesh C <vignesh21@gmail.com> Discussion: https://postgr.es/m/CALDaNm0jKY__83tUsem79+YqfjTWTAkDfiPS0T_Z4y0AYGd_HQ@mail.gmail.com
Diffstat (limited to 'src')
-rw-r--r--src/include/lib/simplehash.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h
index e8d5cc5c02..df432a87c5 100644
--- a/src/include/lib/simplehash.h
+++ b/src/include/lib/simplehash.h
@@ -810,7 +810,7 @@ SH_LOOKUP_HASH_INTERNAL(SH_TYPE * tb, SH_KEY_TYPE key, uint32 hash)
}
/*
- * Lookup up entry in hash table. Returns NULL if key not present.
+ * Lookup entry in hash table. Returns NULL if key not present.
*/
SH_SCOPE SH_ELEMENT_TYPE *
SH_LOOKUP(SH_TYPE * tb, SH_KEY_TYPE key)
@@ -821,7 +821,7 @@ SH_LOOKUP(SH_TYPE * tb, SH_KEY_TYPE key)
}
/*
- * Lookup up entry in hash table using an already-calculated hash.
+ * Lookup entry in hash table using an already-calculated hash.
*
* Returns NULL if key not present.
*/