Resolve some markup complaints from doxygen

This commit is contained in:
Nick Mathewson 2012-06-04 19:56:16 -04:00
parent f68c042637
commit 361260ff8f
4 changed files with 7 additions and 7 deletions

View File

@ -795,7 +795,7 @@ tor_cert_decode(const uint8_t *certificate, size_t certificate_len)
return newcert;
}
/** Set *<b>encoded_out</b> and *<b>size_out/b> to <b>cert</b>'s encoded DER
/** Set *<b>encoded_out</b> and *<b>size_out</b> to <b>cert</b>'s encoded DER
* representation and length, respectively. */
void
tor_cert_get_der(const tor_cert_t *cert,

View File

@ -2259,7 +2259,7 @@ config_assign_value(const config_format_t *fmt, or_options_t *options,
return 0;
}
/** Mark every linelist in <b>options<b> "fragile", so that fresh assignments
/** Mark every linelist in <b>options</b> "fragile", so that fresh assignments
* to it will replace old ones. */
static void
config_mark_lists_fragile(const config_format_t *fmt, or_options_t *options)
@ -6082,7 +6082,7 @@ get_configured_ports(void)
return configured_ports;
}
/** Return an <address>:<port> string representation of the address
/** Return an address:port string representation of the address
* where the first <b>listener_type</b> listener waits for
* connections. Return NULL if we couldn't find a listener. The
* string is allocated on the heap and it's the responsibility of the

View File

@ -1652,7 +1652,7 @@ or_handshake_state_free(or_handshake_state_t *state)
/**
* Remember that <b>cell</b> has been transmitted (if <b>incoming</b> is
* false) or received (if <b>incoming is true) during a V3 handshake using
* false) or received (if <b>incoming</b> is true) during a V3 handshake using
* <b>state</b>.
*
* (We don't record the cell, but we keep a digest of everything sent or
@ -1691,8 +1691,8 @@ or_handshake_state_record_cell(or_handshake_state_t *state,
}
/** Remember that a variable-length <b>cell</b> has been transmitted (if
* <b>incoming</b> is false) or received (if <b>incoming is true) during a V3
* handshake using <b>state</b>.
* <b>incoming</b> is false) or received (if <b>incoming</b> is true) during a
* V3 handshake using <b>state</b>.
*
* (We don't record the cell, but we keep a digest of everything sent or
* received during the v3 handshake, and the client signs it in an

View File

@ -1430,7 +1430,7 @@ nodelist_add_node_and_family(smartlist_t *sl, const node_t *node)
}
/** Given a <b>router</b>, add every node_t in its family (including the
* node itself</b>) to <b>sl</b>.
* node itself!) to <b>sl</b>.
*
* Note the type mismatch: This function takes a routerinfo, but adds nodes
* to the smartlist!