diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-02-12 10:59:46 -0500 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2018-02-12 11:14:34 -0500 |
commit | 99fbbc6c478d346a469e61663a319c8cf03fec44 (patch) | |
tree | cb4775b1289c1a7a3b6a17c3e2b610b8a8860ab5 /src | |
parent | 1a4fc9cddf27595db6f5da981a557f768fa32f66 (diff) | |
download | tor-99fbbc6c478d346a469e61663a319c8cf03fec44.tar.gz tor-99fbbc6c478d346a469e61663a319c8cf03fec44.zip |
Fix a typo in an address_set.c comment.
Diffstat (limited to 'src')
-rw-r--r-- | src/common/address_set.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/address_set.c b/src/common/address_set.c index 6fa942b0dc..4924cb65c2 100644 --- a/src/common/address_set.c +++ b/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 |