Skip to content

Commit

Permalink
Fix Rust doc
Browse files Browse the repository at this point in the history
  • Loading branch information
ibc committed Feb 2, 2024
1 parent 702cc2c commit 2fe0e69
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rust/src/data_structures.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,13 +167,13 @@ impl IceParameters {
#[serde(rename_all = "lowercase")]
pub enum IceCandidateType {
/// The candidate is a host candidate, whose IP address as specified in the
/// [`IceCandidate::ip`] property is in fact the true address of the remote peer.
/// [`IceCandidate::address`] property is in fact the true address of the remote peer.
Host,
/// The candidate is a server reflexive candidate; the [`IceCandidate::ip`] indicates an
/// The candidate is a server reflexive candidate; the [`IceCandidate::address`] indicates an
/// intermediary address assigned by the STUN server to represent the candidate's peer
/// anonymously.
Srflx,
/// The candidate is a peer reflexive candidate; the [`IceCandidate::ip`] is an intermediary
/// The candidate is a peer reflexive candidate; the [`IceCandidate::address`] is an intermediary
/// address assigned by the STUN server to represent the candidate's peer anonymously.
Prflx,
/// The candidate is a relay candidate, obtained from a TURN server. The relay candidate's IP
Expand Down

0 comments on commit 2fe0e69

Please sign in to comment.