diff options
author | Daniel Gustafsson | 2022-11-17 12:17:19 +0000 |
---|---|---|
committer | Daniel Gustafsson | 2022-11-17 12:17:19 +0000 |
commit | 3d0c95bc8920f51f7d7685c622c9a75f59cf322f (patch) | |
tree | 9ac40615680173ff70071bb45f3fe3195904e02d | |
parent | 01755490cfa196ddc415308ab5aed8cc45fbaaad (diff) |
Fix wording in comment
Author: vignesh C <[email protected]>
Discussion: https://postgr.es/m/CALDaNm0jKY__83tUsem79+YqfjTWTAkDfiPS0T_Z4y0AYGd_HQ@mail.gmail.com
-rw-r--r-- | src/include/lib/simplehash.h | 4 |
1 files 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. */ |