Explorar o código

Fix a typo in an address_set.c comment.

Nick Mathewson %!s(int64=6) %!d(string=hai) anos
pai
achega
99fbbc6c47
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/common/address_set.c

+ 1 - 1
src/common/address_set.c

@@ -22,7 +22,7 @@
 /** How many 64-bit siphash values to extract per address */
 #define N_HASHES 2
 /** How many bloom-filter bits we set per address. This is twice the N_HASHES
- * value, since we split the siphash outcome two 32-bit values. */
+ * value, since we split the siphash output into two 32-bit values. */
 #define N_BITS_PER_ITEM (N_HASHES * 2)
 
 /* XXXX This code is largely duplicated with digestset_t.  We should merge