]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix a typo in an address_set.c comment.
authorNick Mathewson <nickm@torproject.org>
Mon, 12 Feb 2018 15:59:46 +0000 (10:59 -0500)
committerDavid Goulet <dgoulet@torproject.org>
Mon, 12 Feb 2018 16:14:34 +0000 (11:14 -0500)
src/common/address_set.c

index 6fa942b0dccb635f5c3f9846e7e5d9b3e3800cdd..4924cb65c2470d5ae5ad13d482e2d65c3712b168 100644 (file)
@@ -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