aboutsummaryrefslogtreecommitdiff
path: root/src/common/address_set.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2018-02-09 17:05:20 -0500
committerRoger Dingledine <arma@torproject.org>2018-02-09 17:05:20 -0500
commit99666dc6c4edb7614abc001d92326ca59c23f5f5 (patch)
tree10c5a562917e4d5ef6dac7841e6e31298da7b3ae /src/common/address_set.c
parentd95c7c7f529fc1be2cf6a474915f065fd2eb6f41 (diff)
downloadtor-99666dc6c4edb7614abc001d92326ca59c23f5f5.tar.gz
tor-99666dc6c4edb7614abc001d92326ca59c23f5f5.zip
whitespace and typo cleanups
Diffstat (limited to 'src/common/address_set.c')
-rw-r--r--src/common/address_set.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/address_set.c b/src/common/address_set.c
index 6fa942b0dc..ea48c1638e 100644
--- a/src/common/address_set.c
+++ b/src/common/address_set.c
@@ -34,7 +34,7 @@
* independent siphashes rather than messing around with bit-shifts. The
* approach here is probably more sound, and we should prefer it if&when we
* unify the implementations.
- **/
+ */
struct address_set_t {
/** siphash keys to make N_HASHES independent hashes for each address. */
@@ -63,7 +63,7 @@ address_set_new(int max_addresses_guess)
}
/**
- * Release all storage associated with <b>set</b>
+ * Release all storage associated with <b>set</b>.
*/
void
address_set_free(address_set_t *set)
@@ -107,7 +107,7 @@ address_set_add_ipv4h(address_set_t *set, uint32_t addr)
}
/**
- * Return true if <b>addr</b> if a member of <b>set</b>. (And probably,
+ * Return true if <b>addr</b> is a member of <b>set</b>. (And probably,
* return false if <b>addr</b> is not a member of set.)
*/
int