@@ -246,7 +246,7 @@ test_pattern(const test_spec *spec)
246
246
* last integer that we added to the set, plus an arbitrary constant
247
247
* (1000). There's no point in probing the whole 0 - 2^64 range, if
248
248
* only a small part of the integer space is used. We would very
249
- * rarely hithit values that are actually in the set.
249
+ * rarely hit values that are actually in the set.
250
250
*/
251
251
x = (pg_lrand48 () <<31 ) |pg_lrand48 ();
252
252
x = x % (last_int + 1000 );
@@ -337,8 +337,8 @@ test_single_value(uint64 value)
337
337
elog (ERROR ,"intset_num_entries returned " UINT64_FORMAT ", expected 1" ,num_entries );
338
338
339
339
/*
340
- * Test intset_is_member() at various special values, like 0 andand
341
- *maximum possible 64-bit integer, as well as the value itself.
340
+ * Test intset_is_member() at various special values, like 0 andmaximum
341
+ * possible 64-bit integer, as well as the value itself.
342
342
*/
343
343
if (intset_is_member (intset ,0 )!= (value == 0 ))
344
344
elog (ERROR ,"intset_is_member failed for 0" );