Fix misnamed parameter in or_circuit_new docstring.

* CHANGES `p_conn` to `p_chan` in `or_circuit_new()` docstring.
This commit is contained in:
Isis Lovecruft 2015-08-06 06:05:07 +00:00
parent 347fe449fe
commit 7155ee849e
No known key found for this signature in database
GPG Key ID: 18C16EC5F9F1D673
1 changed files with 2 additions and 2 deletions

View File

@ -716,8 +716,8 @@ origin_circuit_new(void)
return circ;
}
/** Allocate a new or_circuit_t, connected to <b>p_conn</b> as
* <b>p_circ_id</b>. If <b>p_conn</b> is NULL, the circuit is unattached. */
/** Allocate a new or_circuit_t, connected to <b>p_chan</b> as
* <b>p_circ_id</b>. If <b>p_chan</b> is NULL, the circuit is unattached. */
or_circuit_t *
or_circuit_new(circid_t p_circ_id, channel_t *p_chan)
{