diff options
author | Robert Ransom <rransom.8774@gmail.com> | 2011-06-19 01:28:40 -0700 |
---|---|---|
committer | Robert Ransom <rransom.8774@gmail.com> | 2011-06-22 14:09:43 -0700 |
commit | d7254bea11a0fc2685cc2ea24fb57d2ab3945b2f (patch) | |
tree | 2a1a0cda35b41780c2dfe88c6d46e864d580e2e3 /src/or/or.h | |
parent | 8a55da57ed17dfb9cefe3193cbda53a15547630e (diff) | |
download | tor-d7254bea11a0fc2685cc2ea24fb57d2ab3945b2f.tar.gz tor-d7254bea11a0fc2685cc2ea24fb57d2ab3945b2f.zip |
Fix minor comment issues
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/or.h b/src/or/or.h index 97fecd1500..1909887bbd 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -2318,14 +2318,14 @@ typedef struct or_circuit_t { cell_ewma_t p_cell_ewma; } or_circuit_t; -/** Convert a circuit subtype to a circuit_t.*/ +/** Convert a circuit subtype to a circuit_t. */ #define TO_CIRCUIT(x) (&((x)->_base)) -/** Convert a circuit_t* to a pointer to the enclosing or_circuit_t. Asserts +/** Convert a circuit_t* to a pointer to the enclosing or_circuit_t. Assert * if the cast is impossible. */ static or_circuit_t *TO_OR_CIRCUIT(circuit_t *); /** Convert a circuit_t* to a pointer to the enclosing origin_circuit_t. - * Asserts if the cast is impossible. */ + * Assert if the cast is impossible. */ static origin_circuit_t *TO_ORIGIN_CIRCUIT(circuit_t *); static INLINE or_circuit_t *TO_OR_CIRCUIT(circuit_t *x) |