From 3d0c95bc8920f51f7d7685c622c9a75f59cf322f Mon Sep 17 00:00:00 2001 From: Daniel Gustafsson Date: Thu, 17 Nov 2022 13:17:19 +0100 Subject: [PATCH] Fix wording in comment Author: vignesh C Discussion: https://postgr.es/m/CALDaNm0jKY__83tUsem79+YqfjTWTAkDfiPS0T_Z4y0AYGd_HQ@mail.gmail.com --- src/include/lib/simplehash.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index e8d5cc5c026..df432a87c5f 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. */