@@ -246,7 +246,7 @@ test_pattern(const test_spec *spec)
246246 * last integer that we added to the set, plus an arbitrary constant
247247 * (1000). There's no point in probing the whole 0 - 2^64 range, if
248248 * 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.
250250 */
251251x = (pg_lrand48 () <<31 ) |pg_lrand48 ();
252252x = x % (last_int + 1000 );
@@ -337,8 +337,8 @@ test_single_value(uint64 value)
337337elog (ERROR ,"intset_num_entries returned " UINT64_FORMAT ", expected 1" ,num_entries );
338338
339339/*
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.
342342 */
343343if (intset_is_member (intset ,0 )!= (value == 0 ))
344344elog (ERROR ,"intset_is_member failed for 0" );